Compare commits

..

No commits in common. "1e65b6da57dbef34ec5b558cfccdb6ea1c2135fd" and "0f64cf7137832e5a424f120fdca961f1bb00dfb0" have entirely different histories.

5 changed files with 10 additions and 41 deletions

View file

@ -1,7 +1,13 @@
general { general {
inhibit_sleep = 3 # Define the lock command for hypridle
lock_cmd = pidof hyprlock || ~/.config/hypr/scripts/lock.sh # This is used whenever hypridle or listeners need to lock the screen
before_sleep_cmd = loginctl lock-session lock_cmd = pidof hyprlock || hyprlock
# Runs before system suspend (safety net if you manually suspend)
# On a desktop, you can remove this if you never suspend manually
before_sleep_cmd = ~/.config/hypr/scripts/lock.sh
# Restore screen after sleep
after_sleep_cmd = hyprctl dispatch dpms on after_sleep_cmd = hyprctl dispatch dpms on
} }

View file

@ -1,15 +1,3 @@
auth {
fingerprint {
enabled = true
ready_message = Scan fingerprint to unlock
present_message = Scanning...
}
}
animations {
animation = fadeOut, 0
}
background { background {
path = ~/.config/hypr/wallpapers/Purple.jpg path = ~/.config/hypr/wallpapers/Purple.jpg
blur_passes = 2 blur_passes = 2

View file

@ -1,8 +0,0 @@
#!/bin/bash
pkill -x dim
hyprctl switchxkblayout all 0
wpctl set-mute @DEFAULT_AUDIO_SINK@ 1
hyprlock --no-fade-in &
hyprctl dispatch dpms off
wait
wpctl set-mute @DEFAULT_AUDIO_SINK@ 0

View file

@ -2,4 +2,4 @@
hyprctl switchxkblayout all 0 hyprctl switchxkblayout all 0
fcitx5-remote -s keyboard-us-dvorak fcitx5-remote -s keyboard-us-dvorak
wpctl set-mute @DEFAULT_AUDIO_SINK@ 1 wpctl set-mute @DEFAULT_AUDIO_SINK@ 1
hyprlock --no-fade-in && wpctl set-mute @DEFAULT_AUDIO_SINK@ 0 hyprlock && wpctl set-mute @DEFAULT_AUDIO_SINK@ 0

View file

@ -16,7 +16,6 @@
"hyprland/language", "hyprland/language",
"custom/notifications", "custom/notifications",
"custom/idle-inhibit", "custom/idle-inhibit",
"battery",
"custom/power" "custom/power"
], ],
@ -115,22 +114,6 @@
"format": " ⏻ ", "format": " ⏻ ",
"tooltip": false, "tooltip": false,
"on-click": "wlogout --protocol layer-shell" "on-click": "wlogout --protocol layer-shell"
},
"battery": {
"interval": 60,
"states": {
"warning": 30,
"critical": 15
},
"events": {
"on-discharging-warning": "notify-send -u normal 'Low Battery'",
"on-discharging-critical": "notify-send -u critical 'Very Low Battery'",
"on-charging-100": "notify-send -u normal 'Battery Full!'"
},
"format": "{capacity}% {icon}",
"format-icons": ["", "", "", "", ""],
"max-length": 25
} }
} }