summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortsxv478 <atvx717@infraredcombat.xyz>2024-11-16 16:42:34 +0300
committertsxv478 <atvx717@infraredcombat.xyz>2024-11-16 16:42:34 +0300
commite3aa3acbe6435dd1dc6ef0541e0930a02683f912 (patch)
tree578685e168cec0e24f25966c76bc288bae817623
parent6890e54cb3d4a352fc791a782ca0f908381b116f (diff)
sysact fix
-rwxr-xr-xsysact2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysact b/sysact
index 01779c5..245eabb 100755
--- a/sysact
+++ b/sysact
@@ -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 ;;