diff options
Diffstat (limited to 'ar/.local/bin/statusbar/sb-help-icon')
| -rwxr-xr-x | ar/.local/bin/statusbar/sb-help-icon | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/ar/.local/bin/statusbar/sb-help-icon b/ar/.local/bin/statusbar/sb-help-icon new file mode 100755 index 0000000..2717758 --- /dev/null +++ b/ar/.local/bin/statusbar/sb-help-icon @@ -0,0 +1,22 @@ +#!/bin/sh + +# The clickable help menu. Middle click to restart wm. + +# If dwm is running, use dwm's readme and restart. +pidof dwm >/dev/null && + READMEFILE=/usr/local/share/dwm/thesiah.mom +restartwm() { pkill -HUP dwm; } || + restartwm() { i3 restart; } + +case $BLOCK_BUTTON in +1) groff -mom "${READMEFILE:-${XDG_DATA_HOME:-${HOME}/.local/share}/thesiah/thesiah.mom}" -Tpdf | zathura - ;; +2) restartwm ;; +3) notify-send "❓ Help module" "\- Left click to open THESIAH guide +- Middle click to refresh window manager +- Shift + Middle click to run system action +- Shift + Right clict to lock screen" ;; +6) setsid -f "$TERMINAL" -e "$EDITOR" "$0" ;; +7) sysact ;; +8) slock ;; +esac +echo "❓" |
