blob: 443ed5413ae76cd18483f448e8e28b493b4cfe7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
if [ "$MENUCMD" = "tofi" ]
then
menucmd="tofi --width 10% --height 13% --padding-left 2%"
elif [ "$MENUCMD" = "dmenu" ]
then
menucmd="dmenu -g 2 -l 2"
else
menucmd="fzf"
fi
choices="poweroff\nreboot\nhibernate\nsuspend"
choice="$(printf "$choices" | $menucmd)"
test -z "$choice" || systemctl "$choice"
|