7 lines
159 B
Bash
Executable File
7 lines
159 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case "$(printf "shutdown\\nreboot" | dmenu -l 2 -p "Choose your poison")" in
|
|
"shutdown") systemctl poweroff ;;
|
|
"reboot") systemctl reboot ;;
|
|
esac
|