summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLM-LCL <hello@exaltedelite.club>2024-11-25 04:38:58 +0100
committerLM-LCL <hello@exaltedelite.club>2024-11-25 04:38:58 +0100
commit4d938d1dd59981d72836424c1c36bfef2254f000 (patch)
treee0a47978af363d17d0160804630d3e3faa11c74b
parent9cc0ce20537f34492853a243eebf4c9dcb43127d (diff)
Order updateHEADmain
-rwxr-xr-xlcl-system4
1 files changed, 2 insertions, 2 deletions
diff --git a/lcl-system b/lcl-system
index 6f8deb2..2f70bc2 100755
--- a/lcl-system
+++ b/lcl-system
@@ -1,10 +1,10 @@
#! /bin/sh
-selected="$(printf "Lock\nSleep\nShutdown\nReboot" | dmenu -i)"
+selected="$(printf "Shutdown\nLock\nSleep\nReboot" | dmenu -i)"
case "$selected" in
+ 'Shutdown') sudo shutdown -P 0 ;;
'Lock') slock ;;
'Sleep') systemctl suspend ;;
- 'Shutdown') sudo shutdown -P 0 ;;
'Reboot') sudo reboot ;;
esac