diff options
Diffstat (limited to 'dot_config/i3/scripts/executable_keyhint')
-rw-r--r-- | dot_config/i3/scripts/executable_keyhint | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/dot_config/i3/scripts/executable_keyhint b/dot_config/i3/scripts/executable_keyhint new file mode 100644 index 0000000..8b8c3e3 --- /dev/null +++ b/dot_config/i3/scripts/executable_keyhint | |||
@@ -0,0 +1,25 @@ | |||
1 | #!/bin/bash | ||
2 | |||
3 | Main() { | ||
4 | source /usr/share/endeavouros/scripts/eos-script-lib-yad || return 1 | ||
5 | |||
6 | local command=( | ||
7 | eos_yad --title="EndeavourOS i3-wm keybindings:" --no-buttons --geometry=400x345-15-400 --list | ||
8 | --column=key: --column=description: --column=command: | ||
9 | "ESC" "close this app" "" | ||
10 | "=" "modkey" "(set mod Mod4)" | ||
11 | "+enter" "open a terminal" "" | ||
12 | "+Shift+n" "new empty workspace" "" | ||
13 | "+w" "open Browser" "" | ||
14 | "+n" "open Filebrowser" "" | ||
15 | "+d" "app menu" "" | ||
16 | "+q" "close focused app" "" | ||
17 | "Print-key" "screenshot" "" | ||
18 | "+Shift+e" "logout menu" "" | ||
19 | "F1" "open keybinding helper" "" | ||
20 | ) | ||
21 | |||
22 | "${command[@]}" | ||
23 | } | ||
24 | |||
25 | Main "$@" | ||