diff options
author | Jasper Ras <jras@hostnet.nl> | 2025-02-10 20:09:44 +0100 |
---|---|---|
committer | Jasper Ras <jras@hostnet.nl> | 2025-02-10 20:09:44 +0100 |
commit | 0b68330543c86dbbcbca81bcc1f2d30cff83e2fe (patch) | |
tree | fdf1fed557960e21e4aedda437096573cfb6de37 /configuration/home-manager/hyprland.nix | |
parent | 674678fe0a8d57b7a82dd6143efd67828b1b1e11 (diff) |
increase timeouts of hypridle
Diffstat (limited to 'configuration/home-manager/hyprland.nix')
-rw-r--r-- | configuration/home-manager/hyprland.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configuration/home-manager/hyprland.nix b/configuration/home-manager/hyprland.nix index 0129385..c545102 100644 --- a/configuration/home-manager/hyprland.nix +++ b/configuration/home-manager/hyprland.nix @@ -174,16 +174,16 @@ in listener = [ { - timeout = 60; + timeout = 120; on-timeout = "brightnessctl -s set 10"; on-resume = "brightnessctl -r"; } { - timeout = 120; + timeout = 300; on-timeout = "pidof hyprlock || hyprlock"; } { - timeout = 300; + timeout = 600; on-timeout = "hyprctl dispatch dpms off"; on-resume = "hyprctl dispatch dpms on"; } |