diff options
author | sils <sils@sils.li> | 2023-10-22 23:40:15 +0200 |
---|---|---|
committer | sils <sils@sils.li> | 2023-10-22 23:40:15 +0200 |
commit | f4938af18c1ee0602a9632502ce77bf12317f136 (patch) | |
tree | f51612495692a0d4031f3327a23adaec178d1e43 /users | |
parent | fix(u/sils/swayidle): turn screen off before lock (diff) | |
download | nix-config-f4938af18c1ee0602a9632502ce77bf12317f136.tar.gz nix-config-f4938af18c1ee0602a9632502ce77bf12317f136.zip |
feat(u/sils/swayidle): disable turning screen off
# Please enter the commit message for your changes. Lines starting # with '#' will be ignored, and an empty message aborts the commit. # # On branch main # Your branch is up to date with 'origin/main'. # # Changes to be committed: # modified: users/sils/swayidle/default.nix #
Diffstat (limited to 'users')
-rw-r--r-- | users/sils/swayidle/default.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/users/sils/swayidle/default.nix b/users/sils/swayidle/default.nix index beddfd5..df160df 100644 --- a/users/sils/swayidle/default.nix +++ b/users/sils/swayidle/default.nix @@ -17,11 +17,11 @@ timeout = 60; command = "${pkgs.swaylock}/bin/swaylock -f"; } - { - timeout = 40; - command = "${pkgs.hyprland}/bin/hyprctl dispatch dpms off"; - resumeCommand = "${pkgs.hyprland}/bin/hyprctl dispatch dpms on"; - } + #{ + # timeout = 40; + # command = "${pkgs.hyprland}/bin/hyprctl dispatch dpms off"; + # resumeCommand = "${pkgs.hyprland}/bin/hyprctl dispatch dpms on"; + #} ]; systemdTarget = "hyprland-session.target"; }; |