mirror of
https://github.com/mintycube/dotfiles.git
synced 2024-10-22 14:05:41 +02:00
14 lines
226 B
Plaintext
14 lines
226 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# The clickable help menu. Middle click to restart wm.
|
||
|
|
||
|
case $BLOCK_BUTTON in
|
||
|
1) sysact ;;
|
||
|
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||
|
esac;
|
||
|
if [ ! -e ~/.cache/bar_color ]; then
|
||
|
echo " "
|
||
|
else
|
||
|
echo "^C1^ ^d^"
|
||
|
fi
|