summaryrefslogtreecommitdiff
path: root/bin/menuscripts/mpower
blob: 8c1a886503eeed814098dc6f30f78b81c3b6759a (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
hibernate
reboot
firmware
EOF
)"

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