dmenu-scripts/dmenu-power-menu

11 lines
199 B
Plaintext
Raw Normal View History

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