diff options
author | clarkzjw <[email protected]> | 2022-11-17 10:56:25 -0800 |
---|---|---|
committer | clarkzjw <[email protected]> | 2022-11-17 10:56:25 -0800 |
commit | d2d735742ca61b211c9b48a2209d36395daebcf4 (patch) | |
tree | bda27729a1bbac3ab354a1f10d4885899cdbf967 /dot_config/i3/scripts/executable_keyhint | |
parent | a6d2e5e6fb9adc84c32e86630b4846b1765c7d77 (diff) | |
download | dotfiles-d2d735742ca61b211c9b48a2209d36395daebcf4.tar.gz |
+ add existing config
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 "$@" | ||