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