2026-04-24 20:49:31 +02:00
|
|
|
#!/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 \
|
2026-05-07 07:10:06 +02:00
|
|
|
firefox-langpacks* \
|
|
|
|
|
plasma-discover-packagekit || true
|
2026-05-07 12:14:39 +02:00
|
|
|
|
|
|
|
|
rm -f /etc/xdg/autostart/org.kde.discover.notifier.desktop
|
2026-05-07 07:10:06 +02:00
|
|
|
|
|
|
|
|
dnf5 clean all
|
2026-04-24 20:49:31 +02:00
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
# Services Configuration
|
|
|
|
|
###############################################################################
|
2026-05-01 17:32:20 +02:00
|
|
|
echo "Enabling/Disabling services..."
|
2026-04-24 20:49:31 +02:00
|
|
|
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
|