feat: complete skylanix rebrand and preseed improvements

- Replace yunohost grub theme with skylanix theme
- Update isolinux menu colors to skylanix branding (#4490a5)
- Refactor preseed configuration with improved package management
- Move Firefox Mozilla installation to main preseed
- Consolidate user shell configuration and system setup
- Streamline late custom scripts for AMD and NVIDIA variants

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
lapatatedouce
2025-07-25 18:34:50 +02:00
parent 090904527b
commit eb10cc0058
5 changed files with 73 additions and 62 deletions

View File

@@ -37,20 +37,7 @@ apt-get update 2>&1 | filter_warn
# Installer le noyau XanMod
apt-get install -y linux-xanmod-x64v3 2>&1 | filter_warn
# Ajouter flathub à flatpak
timeout 30 flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo || true
# Supprimer Konqueror si présent
apt-get remove --purge -y konqueror 2>&1 | filter_warn
# Mettre le shell fish pour chaque utilisateur non root
for u in $(awk -F: '$3 >= 1000 && $3 < 65534 { print $1 }' /etc/passwd); do
chsh -s /usr/bin/fish $u 2>/dev/null || true
done
# Activer le support i386 et mettre le système à niveau
dpkg --add-architecture i386 || true
apt-get update 2>&1 | filter_warn
# Installer Kisak Mesa
apt-get -y dist-upgrade 2>&1 | filter_warn
exit 0