♻️ refactor(rofi): bindings picker to detect if keyb is installed

This commit is contained in:
Sergio Laín 2024-10-16 13:05:25 +02:00
parent 7a88cda87e
commit 3b6b8a44fe
No known key found for this signature in database
GPG key ID: 51BB28D8B42FB438
2 changed files with 11 additions and 6 deletions

View file

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

View file

@ -1,5 +1,5 @@
configuration {
modi: "drun,filebrowser";
modi: "drun";
show-icons: true;
display-drun: "Apps";
display-run: "Run";