blob: 271775862f9d633f37a2aa27e6e6971738b1a5b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 "❓"
|