dotfiles/.config/rofi/scripts/keybindings/keybindings
Rayen Sbai 73501c304b
fix: update keybindings script message
The error occurs because the script checks for the keyb program, not cliphist
2024-12-09 15:41:54 +01:00

14 lines
405 B
Bash
Executable file

#!/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