Updated scripts.

This commit is contained in:
cronyakatsuki 2022-04-22 12:48:51 +02:00
parent 272fb806ef
commit 8364d66ca5
7 changed files with 22 additions and 60 deletions

View file

@ -3,6 +3,6 @@
# simple power menu script
case "$(printf "shutdown\\nreboot" | dmenu -p "Choose your poison")" in
"shutdown") systemctl poweroff ;;
"reboot") systemctl reboot ;;
"shutdown") sudo poweroff ;;
"reboot") sudo reboot ;;
esac