Files

19 lines
478 B
Bash
Raw Permalink Normal View History

#!/usr/bin/bash
set -eoux pipefail
###############################################################################
# Cleanup of Unwanted Packages
###############################################################################
echo "Removing Firefox and langpacks..."
2026-05-01 12:34:33 +02:00
dnf5 remove -y \
firefox \
firefox-langpacks* \
plasma-discover \
plasma-discover-flatpak \
plasma-discover-notifier
2026-05-07 12:14:39 +02:00
rm -f /etc/xdg/autostart/org.kde.discover.notifier.desktop
dnf5 clean all