dmenu-scripts/dmenu-power-menu

23 lines
298 B
Plaintext
Raw Normal View History

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