diff options
| author | Ja.KooLit <85185940+JaKooLit@users.noreply.github.com> | 2024-05-30 03:46:42 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-30 03:46:42 +0900 |
| commit | 210b299e722676c82652524aa146f4530d2af46a (patch) | |
| tree | 7390f277d11123f6bdd1ae28edec598dbacee0b9 | |
| parent | 4ac0591cce6acb6296e90940c9598b9798e85600 (diff) | |
| parent | 703287a583d76c98ac7f0f49bc9e3717a7ec2f3d (diff) | |
Merge pull request #316 from JaKooLit/dev-hypridle
Dev hypridle to development
| -rw-r--r-- | config/hypr/hypridle.conf | 26 | ||||
| -rwxr-xr-x | config/hypr/scripts/LockScreen.sh | 4 |
2 files changed, 24 insertions, 6 deletions
diff --git a/config/hypr/hypridle.conf b/config/hypr/hypridle.conf index 549f1b1c..b71c21df 100644 --- a/config/hypr/hypridle.conf +++ b/config/hypr/hypridle.conf @@ -4,13 +4,21 @@ general { - # lock_cmd = notify-send "lock!" # dbus/sysd lock command (loginctl lock-session) - # unlock_cmd = notify-send "unlock!" # same as above, but unlock - before_sleep_cmd = hyprlock # command ran before sleep - # after_sleep_cmd = notify-send "Awake!" # command ran after sleep + lock_cmd = pidof hyprlock || hyprlock # runs hyprlock if it is not already running (this is always run when "loginctl lock-session" is called) + # unlock_cmd = killall hyprlock # kills hyprlock when unlocking (this is always run when "loginctl unlock-session" is called) + before_sleep_cmd = loginctl lock-session # ensures that the session is locked before going to sleep + after_sleep_cmd = hyprctl dispatch dpms on # turn of screen after sleep (not strictly necessary, but just in case) ignore_dbus_inhibit = false # whether to ignore dbus-sent idle-inhibit requests (used by e.g. firefox or steam) } +# turn off screen faster if session is already locked +# (disabled by default) +# listener { +# timeout = 30 # 30 seconds +# on-timeout = pidof hyprlock && hyprctl dispatch dpms off # turns off the screen if hyprlock is active +# on-resume = pidof hyprlock && hyprctl dispatch dpms on # command to run when activity is detected after timeout has fired. +# } + # Warn listener { timeout = 540 # 9 min @@ -21,10 +29,18 @@ listener { # Screenlock listener { timeout = 600 # 10 min - on-timeout = hyprlock # command to run when timeout has passed + on-timeout = loginctl lock-session # command to run when timeout has passed # on-resume = notify-send "Welcome back to your desktop!" # command to run when activity is detected after timeout has fired. } +# Turn off screen +# (disabled by default) +# listener { +# timeout = 630 # 10.5 min +# on-timeout = hyprctl dispatch dpms off # command to run when timeout has passed +# on-resume = hyprctl dispatch dpms on # command to run when activity is detected after timeout has fired. +# } + # Suspend # disabled by default # listener { # timeout = 1200 # 20 min diff --git a/config/hypr/scripts/LockScreen.sh b/config/hypr/scripts/LockScreen.sh index 56d496a5..a871cc75 100755 --- a/config/hypr/scripts/LockScreen.sh +++ b/config/hypr/scripts/LockScreen.sh @@ -2,4 +2,6 @@ # /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # For Hyprlock -hyprlock -q
\ No newline at end of file + +pidof hyprlock || hyprlock -q --immediate + |
