change shutdown from suspend to poweroff in dpowermenu

This commit is contained in:
2023-09-20 12:59:07 +02:00
parent f15dbcf17e
commit 241ab39932
+3 -3
View File
@@ -3,12 +3,12 @@
SELECTION=$(echo "cancel SELECTION=$(echo "cancel
logout logout
reboot reboot
shutdown suspend
suspend" | eval "dmenu $DMENU_COLORS") shutdown" | eval "dmenu $DMENU_COLORS")
case $SELECTION in case $SELECTION in
shutdown ) shutdown )
sudo systemctl suspend ;; # systemctl hibernate ;; sudo systemctl poweroff ;;
reboot ) reboot )
sudo systemctl reboot ;; sudo systemctl reboot ;;
suspend ) suspend )