From f5f5f8ba39fc2e932ba08f2ae01b40fc81cd1dc8 Mon Sep 17 00:00:00 2001 From: sefidel Date: Mon, 5 Aug 2024 15:50:22 +0900 Subject: feat(home/gui): remove dpms toggle on swayidle * possibly the culprit of swayidle screen freezing on AMDGPU --- home/profiles/gui/default.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/home/profiles/gui/default.nix b/home/profiles/gui/default.nix index a2d3361..7cfa2e0 100644 --- a/home/profiles/gui/default.nix +++ b/home/profiles/gui/default.nix @@ -245,13 +245,7 @@ in { timeout = 270; command = "${pkgs.libnotify}/bin/notify-send -t 30000 'Locking screen in 30 seconds'"; } # 5m { timeout = 300; command = lockCommand; } - ] ++ lib.optionals (!cfg.laptop.enable) - [{ - # 10m (desktop only) - timeout = 600; - command = "${config.wayland.windowManager.sway.package}/bin/swaymsg 'output * dpms off'"; - resumeCommand = "${config.wayland.windowManager.sway.package}/bin/swaymsg 'output * dpms on'"; - }] ++ [ + ] ++ [ { # 10m on laptops, 15m on desktop timeout = if cfg.laptop.enable then 600 else 900; -- cgit 1.4.1