dmenu-scripts/dmenu-power-menu

9 lines
188 B
Plaintext
Raw Normal View History

2022-04-05 16:59:13 +02:00
#!/bin/sh
# simple power menu script
case "$(printf "shutdown\\nreboot" | dmenu -p "Choose your poison")" in
"shutdown") systemctl poweroff ;;
"reboot") systemctl reboot ;;
esac