dmenu-scripts/dmenu-power-menu

11 lines
214 B
Plaintext
Raw Normal View History

2022-04-05 16:59:13 +02:00
#!/bin/sh
# simple power menu script
2022-07-17 11:03:13 +02:00
source $HOME/.config/dmenu/config
case "$(printf "shutdown\\nreboot" | $DMENU -p "Choose your poison")" in
2022-04-22 12:48:51 +02:00
"shutdown") sudo poweroff ;;
"reboot") sudo reboot ;;
2022-04-05 16:59:13 +02:00
esac