Add executable checks
This commit is contained in:
parent
c2943b426c
commit
991768638f
1 changed files with 11 additions and 0 deletions
11
install.sh
11
install.sh
|
@ -67,3 +67,14 @@ link "fontconfig" ".config/fontconfig"
|
||||||
# konsole
|
# konsole
|
||||||
link "konsolerc" ".config/konsolerc"
|
link "konsolerc" ".config/konsolerc"
|
||||||
link "konsole" ".local/share/konsole"
|
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
|
||||||
|
|
Loading…
Reference in a new issue