diff options
author | WeirdTreeThing <bradyn127@protonmail.com> | 2025-01-21 10:26:59 -0500 |
---|---|---|
committer | WeirdTreeThing <bradyn127@protonmail.com> | 2025-01-21 10:26:59 -0500 |
commit | 19aec9ab42ae149924ff89a7efc8458be8ab4a91 (patch) | |
tree | 608eac7aab8d960aa444daec453d6b4c401ffdbb | |
parent | 3a1ed2307a0df118e6525f8df75756d2d1694664 (diff) |
Fix keyd install check
-rwxr-xr-x | install.sh | 2 |
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 |