7 lines
257 B
Bash
Executable file
7 lines
257 B
Bash
Executable file
#!/usr/bin/bash
|
|
|
|
CONFIG=$(ls $HOME/.config/keyb/bindings/ | rofi -dmenu -i -p "Selecciona una configuracion de binds" -theme ~/.config/rofi/style.rasi)
|
|
|
|
if [ -n "$CONFIG" ]; then
|
|
kitty --class keyb-kitty keyb -k $HOME/.config/keyb/bindings/$CONFIG &
|
|
fi
|