Files
fluffy-pancake/build/40-remove-packages-and-enable-Services.sh
T
humocs-manandGitHub 4da13eb56e Remove Firefox and plasma-discover packages
Removed Firefox and related langpacks, along with plasma-discover components.
2026-05-22 19:09:27 +02:00

28 lines
883 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-notifier || true
rm -f /etc/xdg/autostart/org.kde.discover.notifier.desktop
dnf5 clean all
###############################################################################
# Services Configuration
###############################################################################
echo "Enabling/Disabling services..."
systemctl enable libvirtd.service
systemctl enable virtlogd.service
systemctl enable podman.socket
systemctl enable bluetooth.service
systemctl enable plasma-setup.service
systemctl enable bootc-fetch-apply-updates.timer