summaryrefslogtreecommitdiff
path: root/.local/bin/desktop/show-i3-keybindings
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/desktop/show-i3-keybindings')
-rwxr-xr-x.local/bin/desktop/show-i3-keybindings11
1 files changed, 11 insertions, 0 deletions
diff --git a/.local/bin/desktop/show-i3-keybindings b/.local/bin/desktop/show-i3-keybindings
new file mode 100755
index 0000000..45d0626
--- /dev/null
+++ b/.local/bin/desktop/show-i3-keybindings
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+if [ -n "$TERM" ]; then
+ grep '^bindsym' ~/.config/i3/config | sort |
+ sed 's/^bindsym \(\S*\)\s\+\(.*\)$/\1|\2/; s/\$super+/  /; s/Shift+/וּ /; s/$alt+/Alt /; s/Ctrl+/Ctrl /' |
+ column --table --separator='|' | less -r
+else
+ grep '^bindsym' ~/.config/i3/config | sort |
+ sed 's/^bindsym \(\S*\)\s\+\(.*\)$/\1|\2/; s/\$super+/  /; s/Shift+/Shift /; s/$alt+/Alt /; s/Ctrl+/Ctrl /' |
+ column --table --separator='|' | yad --text-info
+fi