remove distro script

This commit is contained in:
2026-06-15 02:10:09 +07:00
parent e55ebcc8ed
commit b9e75b0ff7
23 changed files with 0 additions and 1681 deletions
-27
View File
@@ -1,27 +0,0 @@
#!/usr/bin/env bash
# simple yad gui to show default keybindings
Main() {
source /usr/share/endeavouros/scripts/eos-script-lib-yad || return 1
local command=(
eos_yad --title="EndeavourOS i3-wm keybindings:" --no-buttons --geometry=400x345-15-400 --list
--column=key: --column=description: --column=command:
"ESC" "close this app" ""
"=" "modkey" "(set mod Mod4)"
"+enter" "open a terminal" ""
"+Shift+n" "new empty workspace" ""
"+w" "open Browser" ""
"+n" "open Filebrowser" ""
"+d" "app menu" ""
"+q" "close focused app" ""
"Print-key" "screenshot" ""
"+Shift+e" "logout menu" ""
"F1" "open keybinding helper" ""
)
"${command[@]}"
}
Main "$@"