summaryrefslogtreecommitdiff
path: root/ar/.local/bin/statusbar/sb-help-icon
diff options
context:
space:
mode:
Diffstat (limited to 'ar/.local/bin/statusbar/sb-help-icon')
-rwxr-xr-xar/.local/bin/statusbar/sb-help-icon22
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 "❓"