mirror of
https://github.com/mintycube/dotfiles.git
synced 2024-10-22 14:05:41 +02:00
13 lines
253 B
Plaintext
13 lines
253 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
case $BLOCK_BUTTON in
|
||
|
1) keybinds ;;
|
||
|
3) notify-send " Help module" "\- Left click to open keybinds guide." ;;
|
||
|
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||
|
esac;
|
||
|
if [ ! -e ~/.cache/bar_color ]; then
|
||
|
echo " "
|
||
|
else
|
||
|
echo "^C3^ ^d^"
|
||
|
fi
|