This commit is contained in:
2026-06-09 14:55:02 +02:00
parent 5c62ca5642
commit bc9fbdf3bf
4 changed files with 123 additions and 26 deletions
@@ -1,10 +1,5 @@
#!/bin/sh
PKG_KDE_APPS="kcalc dolphin-plugins elisa vlc-qt"
PKG_OFFICE="libreoffice-calc libreoffice-writer libreoffice-draw libreoffice-kf6"
PKG_NET="thunderbird net-tools remmina"
PKG_FLATPAK="discover-backend-flatpak flatpak"
#### Functions
check_root() {
if [ "$(id -u)" -ne 0 ]; then
@@ -51,26 +46,6 @@ if choice 2>/dev/null; then
sed -i "s#^DisplayServer=wayland\$#DisplayServer=x11#" /etc/sddm.conf.d/plasma-wayland.conf # Bug https://gitlab.alpinelinux.org/alpine/aports/-/issues/16802
rc-update del networking boot
rc-update add networkmanager boot
echo "Please reboot OS .."
fi
echo -ne "\nYou want to install KDE apps ($PKG_KDE_APPS)? "
if choice 2>/dev/null; then
apk add $PKG_KDE_APPS
fi
echo -ne "\nYou want to install office packages ($PKG_OFFICE)? "
if choice 2>/dev/null; then
apk add $PKG_OFFICE
fi
echo -ne "\nYou want to install internet programs ($PKG_NET)? "
if choice 2>/dev/null; then
apk add $PKG_NET
fi
echo -ne "\nYou want to install support for Flatpak ($PKG_FLATPAK)? "
if choice 2>/dev/null; then
apk add $PKG_FLATPAK
flatpak remote-add --user --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
fi