- docs/: new 13-page Jekyll site with Just the Docs theme - Home, Building, Installer, Packages, CI/CD, Development - Desktop Environments (with GNOME joke), Wallpapers, Launcher - Overlays, Root Overlay, Live Overlay - .github/workflows/pages.yml: build & deploy docs from docs/ on push to master (only when docs/ changes) - .github/workflows/build.yml: temporarily disable Internet Archive upload (if: false) until ISO is stable - live-overlay/settings.conf: add instances section for init + desktop packagechooser instances - live-overlay/modules/packagechooser_init.conf: init system selector (OpenRC, Runit, S6, Dinit) via netinstall-add method - live-overlay/modules/packagechooser_desktop.conf: DE selector (Plasma, Xfce, Cinnamon, MATE, LXQt, i3, Sway, Hyprland + No Desktop) via legacy method - README.md, AGENTS.md: fix sudo buildiso -> sudo ./buildiso, add note about system buildiso lacking --overwrite='*' - .gitignore: add docs/_site/
65 lines
2.2 KiB
Markdown
65 lines
2.2 KiB
Markdown
---
|
|
title: Live Overlay
|
|
layout: default
|
|
parent: Overlays
|
|
nav_order: 2
|
|
---
|
|
|
|
# Live Overlay
|
|
|
|
Files in `iso-profiles/antergos/live-overlay/` exist only in the live environment — they are **not** present after installation.
|
|
|
|
## Contents
|
|
|
|
```
|
|
live-overlay/
|
|
├── etc/
|
|
│ ├── calamares/
|
|
│ │ ├── settings.conf # -> symlinks to online or offline
|
|
│ ├── calamares-offline/
|
|
│ │ ├── settings.conf # Offline install config (unpackfs)
|
|
│ │ └── modules/
|
|
│ │ └── ...
|
|
│ ├── calamares-online/
|
|
│ │ ├── settings.conf # Online install config (packagechooser)
|
|
│ │ └── modules/
|
|
│ │ ├── packagechooser_init.conf # Init system selector
|
|
│ │ ├── packagechooser_desktop.conf # DE selector
|
|
│ │ └── ...
|
|
│ └── sddm.conf.d/
|
|
│ └── kde_settings.conf # SDDM autologin + Wayland session
|
|
└── usr/
|
|
└── share/
|
|
└── applications/
|
|
├── calamares.desktop # Branded launcher
|
|
└── calamares-config-switcher.desktop # Hidden (NoDisplay=true)
|
|
```
|
|
|
|
## Key files
|
|
|
|
### `etc/calamares/settings.conf`
|
|
|
|
Symlink — points to either `../calamares-offline/settings.conf` or `../calamares-online/settings.conf`, set by `calamares-next.sh`.
|
|
|
|
### `etc/calamares-online/settings.conf`
|
|
|
|
Two `packagechooser` instances:
|
|
- `packagechooser@init` — init system (OpenRC, Runit, S6, Dinit) via netinstall-add
|
|
- `packagechooser@desktop` — DE selection via legacy method
|
|
|
|
### `etc/calamares-online/modules/packagechooser_init.conf`
|
|
|
|
Init selector config. Uses `method: netinstall-add` — the selected init pulls its associated packages.
|
|
|
|
### `etc/calamares-online/modules/packagechooser_desktop.conf`
|
|
|
|
DE selector config. Uses `method: legacy` — returns the selected DE as a global storage value.
|
|
|
|
### `etc/calamares-offline/settings.conf`
|
|
|
|
No packagechooser. Uses `unpackfs` to deploy a pre-built KDE Plasma squashfs.
|
|
|
|
### `usr/share/applications/calamares-config-switcher.desktop`
|
|
|
|
Has `NoDisplay=true` to hide it from the app menu. The upstream Artix "Install Artix Linux" entry is suppressed this way.
|