dmenu-scripts/dmenu-power-menu
2022-10-30 16:07:16 +01:00

11 lines
199 B
Bash
Executable File

#!/bin/sh
# simple power menu script
. $HOME/.config/dmenu/config
case "$(printf "shutdown\\nreboot" | $DMENU -p "Choose your poison")" in
"shutdown") poweroff ;;
"reboot") reboot ;;
esac