diff options
author | tsxv478 <atvx717@infraredcombat.xyz> | 2024-11-16 16:42:34 +0300 |
---|---|---|
committer | tsxv478 <atvx717@infraredcombat.xyz> | 2024-11-16 16:42:34 +0300 |
commit | e3aa3acbe6435dd1dc6ef0541e0930a02683f912 (patch) | |
tree | 578685e168cec0e24f25966c76bc288bae817623 | |
parent | 6890e54cb3d4a352fc791a782ca0f908381b116f (diff) |
sysact fix
-rwxr-xr-x | sysact | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ action="$(printf "Screen off\nLock\nSleep\nReboot\nShutdown" | dmenu -i -c -l 5 case "$action" in "Screen off") xset dpms force off ;; - "Lock") xset dpms force off && slock ;; + "Lock") xset dpms force off ; slock ;; "Sleep") slock $ctl suspend -i ;; "Reboot") $ctl reboot -i ;; "Shutdown") $ctl poweroff -i ;; |