Files
fluffy-pancake/build/40-remove-packages.sh
T
humocs-manandGitHub 95749547d8 Refactor 40-remove-packages.sh to clean up services
Removed service configuration commands and adjusted dnf5 clean command.
2026-05-24 13:20:17 +02:00

19 lines
486 B
Bash
Executable File

#!/usr/bin/bash
set -eoux pipefail
###############################################################################
# Cleanup of Unwanted Packages
###############################################################################
echo "Removing Firefox and langpacks..."
dnf5 remove -y \
firefox \
firefox-langpacks* \
plasma-discover \
plasma-discover-flatpak \
plasma-discover-notifier || true
rm -f /etc/xdg/autostart/org.kde.discover.notifier.desktop
dnf5 clean all