From 174e0c84d7c9c3955d153c54c973aaa9d9a38754 Mon Sep 17 00:00:00 2001 From: Asmir A Date: Sun, 12 Nov 2023 18:08:33 +0100 Subject: [PATCH] home/swayidle: change locker to swaylock --- home/home.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/home/home.nix b/home/home.nix index 765999b..a7e6c3c 100644 --- a/home/home.nix +++ b/home/home.nix @@ -213,21 +213,21 @@ with lib; { events = [ { event = "before-sleep"; - command = "swaylock_bg_blur.sh"; + command = "${pkgs.swaylock}/bin/swaylock"; } { event = "lock"; - command = "swaylock_bg_blur.sh"; + command = "${pkgs.swaylock}/bin/swaylock"; } { event = "after-resume"; - command = "pkill -USR1 i3status-rs"; + command = "${procps.pkill}/bin/pkill -USR1 i3status-rs"; } ]; timeouts = [ { timeout = 15 * 60; - command = "swaylock_bg_blur.sh"; + command = "${pkgs.swaylock}/bin/swaylock"; } ]; };