dmenu-scripts/dmenupowermenu

7 lines
154 B
Plaintext
Raw Normal View History

2021-03-13 18:09:41 +01:00
#!/bin/sh
2022-03-26 20:10:45 +01:00
case "$(printf "shutdown\\nreboot" | dmenu -p "Choose your poison")" in
2022-03-02 15:54:35 +01:00
"shutdown") systemctl poweroff ;;
"reboot") systemctl reboot ;;
2021-03-13 18:09:41 +01:00
esac