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 | b2570adabaca9c11f32662bf9ef2cee06d91fc86 (patch) | |
tree | 578685e168cec0e24f25966c76bc288bae817623 /sysact | |
parent | bf2572d00832e422635080dc12b8b8ac829e5d23 (diff) |
sysact fix
Diffstat (limited to 'sysact')
-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 ;; |