blob: b4b86405d9fb85ec9714647fd2a71c6c31f6ee0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
choice="$(
cat <<EOF | commander -c -w 1 -y 5
poweroff
suspend
reboot
firmware
hibernate
EOF
)"
case "$choice" in
"suspend") doas /usr/sbin/zzz ;;
"poweroff") doas /usr/sbin/poweroff ;;
"reboot"|"firmware") doas /usr/sbin/reboot ;;
"") exit 1 ;;
*) ;;
esac
|