blob: cccba94ac891cd6249fc2e216345514b8984528e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
choice="$(
cat <<EOF | commander -c -w 1 -y 5
poweroff
suspend
reboot
firmware
EOF
)"
# hibernate
[ "$choice" = "firmware" ] && systemctl reboot --firmware-setup
[ "$choice" ] && systemctl "$choice"
|