blob: df2b1236670ea3f2c222734d107b956474e863b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
general {
lock_cmd = hyprlock # dbus/sysd lock command (loginctl lock-session)
unlock_cmd = # same as above, but unlock
before_sleep_cmd = hyprlock # command ran before sleep
after_sleep_cmd = # command ran after sleep
ignore_dbus_inhibit = false # whether to ignore dbus-sent idle-inhibit requests (used by e.g. firefox or steam)
}
listener {
timeout = 300 # in seconds
on-timeout = loginctl lock-session # command to run when timeout has passed
on-resume = # command to run when activity is detected after timeout has fired.
}
listener {
timeout = 360 # in seconds
on-timeout = systemctl suspend # command to run when timeout has passed
on-resume = # command to run when activity is detected after timeout has fired.
}
|