Files
SysTray-X/dist/install.15.5.sh
2023-07-15 22:01:34 +02:00

32 lines
721 B
Bash

#
# Check for Gnome
#
if [ "$XDG_CURRENT_DESKTOP" == "GNOME" ] ; then
echo
echo "Please use the __GNOME_INSTALLER__ installer."
echo "This setup will not work."
echo
else
#
# Check for KDE
#
if [ "$XDG_CURRENT_DESKTOP" == "KDE" ] ; then
echo
echo "Please use the __KDE_INSTALLER__ installer."
echo "This setup will not work."
echo
else
#
# Check for Qt
#
rpm -qa | grep -q libQt5Widgets5
if [ "$?" == "1" ] ; then
echo
echo "Please install the package libQt5Widgets5"
echo
echo "sudo zypper install libQt5Widgets5"
echo
fi
fi
fi