summaryrefslogtreecommitdiff
path: root/bin/menuscripts/mpower
blob: 601e2066018f362ab89f7b04ccacd32685124cad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
choice="$(
cat <<EOF | commander -c -w 1 -y 5
poweroff
suspend
reboot
firmware
hibernate
EOF
)"
# hibernate

[ "$choice" = "firmware" ] && systemctl reboot --firmware-setup
[ "$choice" ] && systemctl "$choice"