You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
525 B
40 lines
525 B
#!/usr/bin/env sh
|
|
|
|
wm_name='powermenu'
|
|
|
|
if xdo id -a "$wm_name" > /dev/null; then
|
|
pkill -f "dzen2 -title-name $wm_name"
|
|
exit
|
|
fi
|
|
|
|
color0="#000000"
|
|
color5="#FFFFFF"
|
|
|
|
screen=1
|
|
|
|
out="Power
|
|
lock
|
|
reboot
|
|
shutdown"
|
|
|
|
lines=$(echo -e "$out" | wc -l)
|
|
|
|
|
|
echo -e "$out" | dzen2 \
|
|
-title-name "$wm_name" \
|
|
-bg "$color0" \
|
|
-fg "$color5" \
|
|
-x "-242" \
|
|
-y "20" \
|
|
-l $((lines-1)) \
|
|
-h 30 \
|
|
-w 240 \
|
|
-fn "Source Code Pro" \
|
|
-e "onstart=uncollapse;button1=menuexec,exit;button3=exit" \
|
|
-ta c \
|
|
-sa c \
|
|
-xs $screen \
|
|
-m \
|
|
-p &
|
|
|
|
|