From f1b07c85f2e576497849e37bfef0af8822936bd9 Mon Sep 17 00:00:00 2001 From: NullBite Date: Sun, 31 Mar 2024 01:23:03 -0400 Subject: [PATCH] Fix duplicate hypridle session --- home/sessions/hyprland/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/home/sessions/hyprland/default.nix b/home/sessions/hyprland/default.nix index e838d41..d1e0bcd 100644 --- a/home/sessions/hyprland/default.nix +++ b/home/sessions/hyprland/default.nix @@ -32,7 +32,8 @@ let # idle-cmd = "${swayidle} -w timeout 315 '${lock-cmd}' timeout 300 '${hyprctl} dispatch dpms off' resume '${hyprctl} dispatch dpms on' before-sleep '${lock-cmd}' lock '${lock-cmd}' unlock '${pkill} -USR1 -x swaylock'"; # idle-cmd = "${swayidle} -w timeout 300 '${hyprctl} dispatch dpms off' resume '${hyprctl} dispatch dpms on'"; - idle-cmd = "${hypridle}"; + # idle-cmd = "${hypridle}"; + idle-cmd = "${pkgs.coreutils}/bin/true"; hypr-dispatcher-package = pkgs.callPackage ./dispatcher { hyprland = hyprland-pkg; }; hypr-dispatcher = "${hypr-dispatcher-package}/bin/hypr-dispatcher";