9 lines
188 B
Bash
Executable File
9 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
|