From c7e5fd760c339e1da423e8bb27c62b3c58093f1a Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Tue, 10 Oct 2023 08:59:32 +0200 Subject: [PATCH] feat: raise screen blanking timeouts --- home-manager/sway/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home-manager/sway/default.nix b/home-manager/sway/default.nix index 90cdda8..e94f023 100644 --- a/home-manager/sway/default.nix +++ b/home-manager/sway/default.nix @@ -49,8 +49,8 @@ in { event = "before-sleep"; command = lock_command; } ]; timeouts = [ - { timeout = 300; command = "${swaymsg} output '*' power off"; resumeCommand = "${swaymsg} output '*' power on"; } - { timeout = 900; command = lock_command; } + { timeout = 900; command = "${swaymsg} output '*' power off"; resumeCommand = "${swaymsg} output '*' power on"; } + { timeout = 1000; command = lock_command; } ]; };