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
12 lines
427 B
Bash
12 lines
427 B
Bash
# fix for screen readers
|
|
if grep -Fqa 'accessibility=' /proc/cmdline &> /dev/null; then
|
|
setopt SINGLE_LINE_ZLE
|
|
fi
|
|
|
|
# Provisionnement automatique archiso (param noyau script=) : LIVE uniquement.
|
|
# Sur le système installé /run/archiso n'existe pas, donc ce bloc ne s'exécute
|
|
# jamais hors du live — c'est la barrière qui empêche l'auto-script sur la cible.
|
|
if [[ -d /run/archiso ]]; then
|
|
~/.automated_script.sh
|
|
fi
|