9 lines
265 B
Bash
Executable file
9 lines
265 B
Bash
Executable file
#!/bin/bash
|
|
|
|
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'"
|