From 73501c304bb0e264aff09ca247d0345001d41370 Mon Sep 17 00:00:00 2001 From: Rayen Sbai Date: Mon, 9 Dec 2024 15:41:54 +0100 Subject: [PATCH] fix: update keybindings script message The error occurs because the script checks for the keyb program, not cliphist --- .config/rofi/scripts/keybindings/keybindings | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/rofi/scripts/keybindings/keybindings b/.config/rofi/scripts/keybindings/keybindings index f1f34ffe..db85ddb1 100755 --- a/.config/rofi/scripts/keybindings/keybindings +++ b/.config/rofi/scripts/keybindings/keybindings @@ -1,7 +1,7 @@ #!/bin/bash if ! command -v keyb >/dev/null 2>&1; then - notify-send "Program not found" "Make sure you have installed cliphist" + 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)