8 lines
188 B
Bash
Executable file
8 lines
188 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# simple power menu script
|
|
|
|
case "$(printf "shutdown\\nreboot" | dmenu -p "Choose your poison")" in
|
|
"shutdown") systemctl poweroff ;;
|
|
"reboot") systemctl reboot ;;
|
|
esac
|