change shutdown from suspend to poweroff in dpowermenu

This commit is contained in:
Johannes Olzem 2023-09-20 12:59:07 +02:00
parent f15dbcf17e
commit 241ab39932
Signed by: jolzem
GPG Key ID: DB5485828E95A447

View File

@ -3,12 +3,12 @@
SELECTION=$(echo "cancel
logout
reboot
shutdown
suspend" | eval "dmenu $DMENU_COLORS")
suspend
shutdown" | eval "dmenu $DMENU_COLORS")
case $SELECTION in
shutdown )
sudo systemctl suspend ;; # systemctl hibernate ;;
sudo systemctl poweroff ;;
reboot )
sudo systemctl reboot ;;
suspend )