[Asahi] Double hypridle timeouts.

Signed-off-by: jmug <u.g.a.mariano@gmail.com>
This commit is contained in:
jmug
2025-07-05 18:11:23 -07:00
parent 8b78a50793
commit eed9a79790
+3 -3
View File
@@ -9,16 +9,16 @@
}; };
listener = [ listener = [
{ {
timeout = 150; # 2.5min. timeout = 300;
on-timeout = "brightnessctl -s set 10"; # set monitor backlight to minimum, avoid 0 on OLED monitor. on-timeout = "brightnessctl -s set 10"; # set monitor backlight to minimum, avoid 0 on OLED monitor.
on-resume = "brightnessctl -r"; # monitor backlight restore. on-resume = "brightnessctl -r"; # monitor backlight restore.
} }
{ {
timeout = 300; # 5min. timeout = 600;
on-timeout = "loginctl lock-session"; # lock screen when timeout has passed. on-timeout = "loginctl lock-session"; # lock screen when timeout has passed.
} }
{ {
timeout = 330; # 5.5min timeout = 630;
on-timeout = "hyprctl dispatch dpms off"; # screen off when timeout has passed on-timeout = "hyprctl dispatch dpms off"; # screen off when timeout has passed
on-resume = "hyprctl dispatch dpms on && brightnessctl -r"; # screen on when activity is detected after timeout has fired. on-resume = "hyprctl dispatch dpms on && brightnessctl -r"; # screen on when activity is detected after timeout has fired.
} }