blob: b7316265cf2e72914de61e4346f22ad1aa96172f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
# Das anklickbare Hilfemenü. Mittelklick, um den Fenstermanager neu zu starten.
# Überprüfe, ob dwm läuft, verwende dwm's Readme und starte neu.
if pidof dwm >/dev/null; then
READMEFILE="/home/artix/Files Sync/📝 Writings/Memoiren/Wer wir sind/Kapitel 1 - Erstes Quartal/✔️ 1. Kapitel Übersicht.txt"
restartwm() { pkill -HUP dwm ;}
else
restartwm() { i3 restart ;}
fi
case $BLOCK_BUTTON in
1) typora "${READMEFILE:-${XDG_DATA_HOME:-$HOME/.local/share}/larbs/readme.md}" ;;
2) restartwm ;;
3) notify-send "❓ Shortcutkeys" ;;
6) setsid -f "$TERMINAL" -e "$EDITOR" "$0" ;;
esac
echo "write"
|