dmenu-scripts/dmenupowermenu

7 lines
159 B
Plaintext
Raw Normal View History

2021-03-13 18:09:41 +01:00
#!/bin/sh
case "$(printf "shutdown\\nreboot" | dmenu -l 2 -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