From 8bf092e498479a256e8da9c1cd61400e15a7d795 Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Sat, 21 Jun 2025 13:00:10 +0200 Subject: [PATCH] hypridle settings --- modules/home/hypridle.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/home/hypridle.nix b/modules/home/hypridle.nix index 906dc0c..9c34f89 100644 --- a/modules/home/hypridle.nix +++ b/modules/home/hypridle.nix @@ -11,16 +11,16 @@ listener = [ { - timeout = 150; # 2.5min. + timeout = 180; # 3min. on-timeout = "brightnessctl -s set 10"; # set monitor backlight to minimum, avoid 0 on OLED monitor. on-resume = "brightnessctl -r"; # monitor backlight restore. } { - timeout = 300; # 5min. + timeout = 600; # 10min. on-timeout = "loginctl lock-session"; # lock screen when timeout has passed } { - timeout = 600; # 10min. + timeout = 900; # 15min. 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. }