31 lines
627 B
Plaintext
31 lines
627 B
Plaintext
$lock_cmd = pidof hyprlock || hyprlock
|
|
$suspend_cmd = pidof steam || systemctl suspend || loginctl suspend
|
|
|
|
general {
|
|
lock_cmd = $lock_cmd
|
|
before_sleep_cmd = loginctl lock-session
|
|
after_sleep_cmd = hyprctl dispatch dpms on
|
|
}
|
|
|
|
listener {
|
|
timeout = 180
|
|
on-timeout = loginctl lock-session
|
|
}
|
|
|
|
listener {
|
|
timeout = 240
|
|
on-timeout = hyprctl dispatch dpms off
|
|
on-resume = hyprctl dispatch dpms on
|
|
}
|
|
|
|
listener {
|
|
timeout = 320
|
|
on-timeout = brightnessctl -sd rgb:kbd_backlight set 0
|
|
on-resume = brightnessctl -rd rgb:kbd_backlight
|
|
}
|
|
|
|
listener {
|
|
timeout = 540
|
|
on-timeout = $suspend_cmd
|
|
}
|