fix(Calamares): Installater will ask the desktop env before the calamares install

- The installer is still W.I.P
This commit is contained in:
2026-06-04 23:30:33 +02:00
parent a7a5055ee8
commit 98d47d497c
25 changed files with 700 additions and 179 deletions
+17
View File
@@ -14,6 +14,23 @@ pacman_conf="pacman.conf"
airootfs_image_type="squashfs"
airootfs_image_tool_options=('-comp' 'xz' '-Xbcj' 'x86' '-b' '1M' '-Xdict-size' '1M')
bootstrap_tarball_compression=(xz -9e)
# NB : ce profiledef.sh ÉCRASE celui de configs/releng/ lors de la fusion du
# build (baseline prioritaire). Il doit donc être un SUR-ENSEMBLE des
# permissions de releng, sinon les helpers live perdent leur bit exécutable
# (ils sont versionnés en 0644) et /root/.gnupg perd son 0700 (gpg refuse).
file_permissions=(
["/etc/shadow"]="0:0:400"
["/root"]="0:0:750"
["/root/.automated_script.sh"]="0:0:755"
["/root/.gnupg"]="0:0:700"
["/usr/local/bin/choose-mirror"]="0:0:755"
["/usr/local/bin/Installation_guide"]="0:0:755"
["/usr/local/bin/livecd-sound"]="0:0:755"
["/usr/local/bin/fws-pick-desktop"]="0:0:755"
["/usr/bin/fws-installer"]="0:0:755"
["/usr/local/bin/fws-desktop-init-common"]="0:0:755"
["/usr/local/bin/fws-desktop-init-xfce"]="0:0:755"
["/usr/local/bin/fws-desktop-init-kde"]="0:0:755"
["/usr/local/bin/fws-desktop-init-gnome"]="0:0:755"
["/usr/local/bin/fws-desktop-init-hyprland"]="0:0:755"
)