diff options
author | sefidel <contact@sefidel.net> | 2023-02-02 02:39:31 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-02-02 02:39:31 +0900 |
commit | 5a0585933312a80ddb391eb19d0829ff6464e3d1 (patch) | |
tree | 00aeb6ef3649c026e4f7537366f59b6017e11467 /home | |
parent | 1e871d1b2ae79a2aa37d0dbb9db72bf14b379036 (diff) | |
download | nixrc-5a0585933312a80ddb391eb19d0829ff6464e3d1.tar.gz nixrc-5a0585933312a80ddb391eb19d0829ff6464e3d1.zip |
fix(profiles/base): fix swaylock '30 sec' alert
Diffstat (limited to 'home')
-rw-r--r-- | home/profiles/base/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/profiles/base/default.nix b/home/profiles/base/default.nix index 1919708..dd241ac 100644 --- a/home/profiles/base/default.nix +++ b/home/profiles/base/default.nix @@ -274,7 +274,7 @@ in { event = "lock"; command = "${pkgs.swaylock-effects}/bin/swaylock -fFc ${neotheme.colors.background} --indicator --grace 2 --fade-in 0.2"; } ]; timeouts = [ - { timeout = 230; command = "${pkgs.libnotify}/bin/notify-send -t 30000 'Locking screen in 30 seconds'"; } + { timeout = 270; command = "${pkgs.libnotify}/bin/notify-send -t 30000 'Locking screen in 30 seconds'"; } { timeout = 300; command = "${pkgs.swaylock-effects}/bin/swaylock -fFc ${neotheme.colors.background} --indicator --grace 2 --fade-in 0.2"; } { timeout = 600; |