Renamed project

This commit is contained in:
2026-07-05 21:22:05 +02:00
parent abd4ad3b30
commit 9bdaaa2488
6 changed files with 19 additions and 19 deletions
+3 -3
View File
@@ -1,10 +1,10 @@
Arch + Hyprland custom installer (live environment)
===================================================
The provisioning repo is at: /root/arch-system-th
The provisioning repo is at: /root/arch-system-hyprland
1. Get online: iwctl (wifi) — wired works automatically
2. Set target+opts: vim /root/arch-system-th/01-install/install.conf
3. Install base: /root/arch-system-th/01-install/run.sh
2. Set target+opts: vim /root/arch-system-hyprland/system.conf
3. Install base: /root/arch-system-hyprland/01-install/run.sh
4. Reboot, then run the system + user provisioning (see repo README).
+3 -3
View File
@@ -4,7 +4,7 @@
#
# Build the thin custom Arch ISO by extending the official `releng` profile with:
# - a few explicit installer packages (extra-packages.x86_64)
# - this repo baked into /root/arch-system-th
# - this repo baked into /root/arch-system-hyprland
# - a login MOTD with install instructions (airootfs/etc/motd)
#
# Run on a machine with the `archiso` package installed (needs root for mkarchiso):
@@ -30,7 +30,7 @@ cat extra-packages.x86_64 >> "$PROFILE/packages.x86_64"
cp -aT airootfs "$PROFILE/airootfs"
# bake the repo into the live root (without git history / build output)
dest="$PROFILE/airootfs/root/arch-system-th"
dest="$PROFILE/airootfs/root/arch-system-hyprland"
mkdir -p "$dest"
cp -a "$REPO_ROOT/." "$dest/"
rm -rf "$dest/.git" "$dest/out"
@@ -40,7 +40,7 @@ rm -rf "$dest/.git" "$dest/out"
# own scripts get +x). We only need the bootstrap executable here; run.sh then
# restores +x across the rest of the repo at runtime, which propagates to the
# installed system. file_permissions+=(...) appends to the array defined in releng.
printf '\nfile_permissions+=(["/root/arch-system-th/01-install/run.sh"]="0:0:755")\n' \
printf '\nfile_permissions+=(["/root/arch-system-hyprland/01-install/run.sh"]="0:0:755")\n' \
>> "$PROFILE/profiledef.sh"
mkdir -p "$OUTDIR"