This commit is contained in:
2025-08-13 21:46:48 +02:00
commit c3e2e6509b
818 changed files with 54187 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#!/bin/bash
if ! command -v keyb >/dev/null 2>&1; then
notify-send "Program not found" "Make sure you have installed keyb"
exit 1
else
CONFIG=$(fd --base-directory "$HOME/.config/keyb/bindings" --type f . | sed 's/\.yml$//' | rofi -dmenu)
if [ -z "$CONFIG" ]; then
exit
fi
hyprctl dispatch exec "[float;size 45% 80%;center 1] kitty keyb -k '$HOME/.config/keyb/bindings/$CONFIG.yml'"
fi