From 991768638f3362601d620a98489ccd129af93aea Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Sat, 9 Dec 2023 14:23:07 +0100 Subject: [PATCH] Add executable checks --- install.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/install.sh b/install.sh index 41b1dd8e..54c1f313 100755 --- a/install.sh +++ b/install.sh @@ -67,3 +67,14 @@ link "fontconfig" ".config/fontconfig" # konsole link "konsolerc" ".config/konsolerc" link "konsole" ".local/share/konsole" + +# check for executables +if ! which qt5ct &> /dev/null; then + echo ":: Warning: qt5ct is not in your PATH." +fi +if ! which qt6ct &> /dev/null; then + echo ":: Warning: qt6ct is not in your PATH." +fi +if ! which nwg-look &> /dev/null; then + echo ":: Warning: nwg-look is not in your PATH." +fi