Improved configure.sh and fixing KDE on Fedora 44 kickstarter #26

Merged
obel1x merged 10 commits from unbrot/fedora-OEMDRV:main into main 2026-05-06 09:20:47 +02:00
Showing only changes of commit b5462e4781 - Show all commits
@@ -21,9 +21,14 @@ fi
#Remove Nextcloud from autostart anyway! Must be started by this script manually, because if it was started befor the ecrypted mount,
#it will never sync and always throw an error that the local dir is missing
if [ -f "$SUDO_HOME/.config/autostart/com.nextcloud.desktopclient.nextcloud.desktop" ]; then
echo "Remove Autostart Nextcloud"
rm $SUDO_HOME/.config/autostart/com.nextcloud.desktopclient.nextcloud.desktop
if [ -f "$HOME/.config/autostart/com.nextcloud.desktopclient.nextcloud.desktop" ]; then
echo "Remove Autostart Nextcloud (old)"
rm $HOME/.config/autostart/com.nextcloud.desktopclient.nextcloud.desktop
fi
# Same for NCs nuild-in autostart
if [ -f "$HOME/.config/autostart/Nextcloud.desktop" ]; then
echo "Remove Autostart Nextcloud (from installed binary)"
rm $HOME/.config/autostart/Nextcloud.desktop
fi
NC_PID=$( pgrep -u $USER nextcloud )