de9647a00d
Remove Calamares compilation and configuration, replace with Anaconda installer setup. Changes: - Remove Calamares-related entries from .gitignore - Update README with migration status from Calamares to Anaconda - Rename setup-calamares.sh references to setup-aur.sh - Remove Calamares packages from package lists - Add anaconda and liveimg payload packages - Add Anaconda kickstart configuration (interactive-defaults.ks) - Update boot sequence documentation: remove Calamares desktop selection, simplify to Openbox live environment - Remove Calamares-specific troubleshooting entries - Clean up .xinitrc and .zlogin to remove Calamares launcher - Update build scripts to reference local repo generically instead of Calamares-specific
14 lines
493 B
Bash
14 lines
493 B
Bash
#!/bin/sh
|
|
# Lancé par startx (cf. /root/.zprofile), uniquement dans le live FWS.
|
|
if [ ! -d /run/archiso ]; then
|
|
exit 0
|
|
fi
|
|
|
|
xsetroot -solid "#1a1a2e"
|
|
|
|
# TODO (chantier C) : lancer l'installateur graphique Anaconda dans cette session.
|
|
# Calamares a été retiré (commit 05ae9c3) et son remplacement Anaconda n'est pas
|
|
# encore câblé. En attendant, on lance Openbox au premier plan : le serveur X a
|
|
# ainsi un client (sinon startx rendrait la main et X se fermerait aussitôt).
|
|
exec openbox
|