about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWeirdTreeThing <bradyn127@protonmail.com>2025-01-21 10:26:59 -0500
committerWeirdTreeThing <bradyn127@protonmail.com>2025-01-21 10:26:59 -0500
commit19aec9ab42ae149924ff89a7efc8458be8ab4a91 (patch)
tree608eac7aab8d960aa444daec453d6b4c401ffdbb
parent3a1ed2307a0df118e6525f8df75756d2d1694664 (diff)
Fix keyd install check
-rwxr-xr-xinstall.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index 8dab367..24f9fa2 100755
--- a/install.sh
+++ b/install.sh
@@ -37,7 +37,7 @@ echo "Installing, this may take some time...."
 # Fedora with the terra repo (Ultramarine) has keyd packaged
 [ "$distro" = "fedora" ] && dnf4 info keyd -y&>> pkg.log && FEDORA_HAS_KEYD=1
 
-if ! [ -f /usr/bin/keyd ]; then
+if [ -z "$(which keyd 2>/dev/null)" ]; then
     # if keyd isnt installed
 	echo "Installing keyd dependencies"
 	case $distro in