Compare commits
87
Commits
v2026.07.11
...
horizon
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
051c466537
|
||
|
|
2c7b4072dc
|
||
|
|
b65f1a37eb
|
||
|
|
11706db546
|
||
|
|
24affb4a5a
|
||
|
|
21db45f0b0
|
||
|
|
ebf861e083
|
||
|
|
d4c155a0af | ||
|
|
7ce836e905 | ||
|
|
4134d950ac | ||
|
|
9a63b5d17a
|
||
|
|
1b44b91e30
|
||
|
|
da5a59a2e5
|
||
|
|
dab33f11e2
|
||
|
|
b46206d54f
|
||
|
|
14a109febf
|
||
|
|
153b3def19
|
||
|
|
3c6968ba56
|
||
|
|
abebe277d4
|
||
|
|
1594c9b9e6
|
||
|
|
9450280214
|
||
|
|
268d06be50
|
||
|
|
4fd9b08ba9
|
||
|
|
9c356b55d4
|
||
|
|
9c714387cb
|
||
|
|
f9b830621e
|
||
|
|
b58da2a378
|
||
|
|
9f9ce8b5aa
|
||
|
|
29e795da87
|
||
|
|
3abead50e2
|
||
|
|
adf96ddac2 | ||
|
|
76e1bb1fc1
|
||
|
|
00e1390b96
|
||
|
|
52d3afed46
|
||
|
|
cca00d3c25
|
||
|
|
2c213667f4
|
||
|
|
13a48a7d77
|
||
|
|
6219c3a8cf
|
||
|
|
8a1f7da3d3
|
||
|
|
dca525ec14
|
||
|
|
e2ed076caa | ||
|
|
20a78051d6
|
||
|
|
1a78e9aa36 | ||
|
|
14b042dae8
|
||
|
|
c56effadda
|
||
|
|
399781274e
|
||
|
|
4853a35f76
|
||
|
|
293bdc4481
|
||
|
|
80eceb0e6a
|
||
|
|
0697af9015
|
||
|
|
e3f7c4f1fc
|
||
|
|
ea9cdda28b
|
||
|
|
22777339b8
|
||
|
|
dc44cfcba2
|
||
|
|
bf72bb5bf4
|
||
|
|
70927808a1
|
||
|
|
a578d69d9d
|
||
|
|
f6fb36b2a7
|
||
|
|
d4d8075f88
|
||
|
|
6ec25cca78
|
||
|
|
a3b69aed34
|
||
|
|
7c2c19d858
|
||
|
|
729da20717
|
||
|
|
2d6faa8422
|
||
|
|
2570a6470a
|
||
|
|
e11897ceae
|
||
|
|
1ca8cbe9fe
|
||
|
|
ada4f375ef
|
||
|
|
9ddb41c201
|
||
|
|
c1f1f230b0
|
||
|
|
d794336975
|
||
|
|
8a3c6d8025
|
||
|
|
2bcc3d1067
|
||
|
|
530a75813a
|
||
|
|
9d976688d9
|
||
|
|
f3993c5cea
|
||
|
|
b3538f0880
|
||
|
|
76ce3b646d
|
||
|
|
3087f9a403
|
||
|
|
3d8dd9190e
|
||
|
|
442980a7af
|
||
|
|
8661722ee7
|
||
|
|
a8446b4dcc
|
||
|
|
d0213a7a46
|
||
|
|
e54b35a1d4
|
||
|
|
a3057c5a73
|
||
|
|
9fa1d125f0
|
@@ -1,108 +0,0 @@
|
||||
name: Build ISO
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
pull_request:
|
||||
branches: [master]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: artixlinux/artixlinux:base
|
||||
options: --privileged
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
pacman -Syu --noconfirm --needed \
|
||||
artools \
|
||||
git \
|
||||
squashfs-tools \
|
||||
sudo \
|
||||
python \
|
||||
python-pip
|
||||
|
||||
- name: Set up WORKSPACE_DIR
|
||||
run: |
|
||||
echo "WORKSPACE_DIR=${{ github.workspace }}" >> $GITHUB_ENV
|
||||
|
||||
- name: Debug workspace
|
||||
run: |
|
||||
echo "GITHUB_WORKSPACE=$GITHUB_WORKSPACE"
|
||||
echo "github.workspace=${{ github.workspace }}"
|
||||
pwd
|
||||
ls -la
|
||||
|
||||
- name: Override pacman.conf with antergos-pkgs repo
|
||||
run: |
|
||||
mkdir -p /root/.config/artools/pacman.conf.d
|
||||
cp "pacman.conf.d/iso-x86_64.conf" \
|
||||
/root/.config/artools/pacman.conf.d/iso-x86_64.conf
|
||||
# Also override the default in case USER_CONF_DIR differs
|
||||
cp "pacman.conf.d/iso-x86_64.conf" \
|
||||
/usr/share/artools/pacman.conf.d/iso-x86_64.conf
|
||||
|
||||
- name: Check available swap and block devices
|
||||
run: |
|
||||
swapon --show || echo "No swap"
|
||||
lsblk
|
||||
free -h
|
||||
|
||||
- name: Setup tmpfs for build directory
|
||||
run: |
|
||||
mkdir -p /var/lib/artools/buildiso
|
||||
mount -t tmpfs -o size=12G,exec,suid,dev tmpfs /var/lib/artools/buildiso
|
||||
mount | grep buildiso
|
||||
|
||||
- name: Build ISO
|
||||
run: |
|
||||
sudo -E ./buildiso -p antergos
|
||||
|
||||
- name: Upload ISO artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: Antergos-NeXT-ISO
|
||||
path: ${{ github.workspace }}/iso/
|
||||
|
||||
- name: Upload to Internet Archive
|
||||
if: true # ISO stable — uploads to archive.org on every master push
|
||||
env:
|
||||
IA_ACCESS_KEY: ${{ secrets.IA_ACCESS_KEY }}
|
||||
IA_SECRET_KEY: ${{ secrets.IA_SECRET_KEY }}
|
||||
run: |
|
||||
pip install --break-system-packages internetarchive
|
||||
|
||||
mkdir -p "$HOME/.config/internetarchive"
|
||||
cat > "$HOME/.config/internetarchive/ia.ini" <<EOF
|
||||
[s3]
|
||||
access = $IA_ACCESS_KEY
|
||||
secret = $IA_SECRET_KEY
|
||||
EOF
|
||||
|
||||
ISO_DIR="${WORKSPACE_DIR}/iso"
|
||||
ISO=$(ls "$ISO_DIR"/antergos/*.iso 2>/dev/null | head -1)
|
||||
[[ -z "$ISO" || ! -f "$ISO" ]] && { echo "No ISO found"; exit 1; }
|
||||
|
||||
DATE=$(date +%Y.%m.%d)
|
||||
IDENTIFIER="antergos-next-$(date +%Y%m%d)-${{ github.run_number }}"
|
||||
|
||||
SIZE=$(stat -c%s "$ISO")
|
||||
if [[ $SIZE -lt 524288000 ]]; then
|
||||
echo "WARNING: ISO smaller than expected (${SIZE} bytes)"
|
||||
file "$ISO" | grep -q "ISO 9660\|UDF" || { echo "Corrupted ISO"; exit 1; }
|
||||
fi
|
||||
|
||||
ia upload "$IDENTIFIER" "$ISO" \
|
||||
--metadata="title:Antergos NeXT $(date +%Y.%m.%d)" \
|
||||
--metadata="mediatype:software" \
|
||||
--metadata="collection:open_source_software" \
|
||||
--metadata="description:Antergos NeXT community revival ISO — KDE Plasma, Dinit, Calamares installer" \
|
||||
--metadata="subject:Antergos; Linux; Artix; Dinit; KDE Plasma; Calamares" \
|
||||
--retries 5
|
||||
|
||||
echo "Uploaded to: https://archive.org/details/$IDENTIFIER"
|
||||
@@ -1,55 +0,0 @@
|
||||
name: Deploy docs to Pages
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: ["master"]
|
||||
paths: ["docs/**"]
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pages: write
|
||||
id-token: write
|
||||
|
||||
concurrency:
|
||||
group: "pages"
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
defaults:
|
||||
run:
|
||||
working-directory: docs
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v7
|
||||
- name: Setup Ruby
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: '3.3'
|
||||
bundler-cache: true
|
||||
cache-version: 0
|
||||
working-directory: '${{ github.workspace }}/docs'
|
||||
- name: Setup Pages
|
||||
id: pages
|
||||
uses: actions/configure-pages@v6
|
||||
- name: Build with Jekyll
|
||||
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
|
||||
env:
|
||||
JEKYLL_ENV: production
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-pages-artifact@v4
|
||||
with:
|
||||
path: docs/_site/
|
||||
|
||||
deploy:
|
||||
environment:
|
||||
name: github-pages
|
||||
url: ${{ steps.deployment.outputs.page_url }}
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
steps:
|
||||
- name: Deploy to GitHub Pages
|
||||
id: deployment
|
||||
uses: actions/deploy-pages@v5
|
||||
@@ -1,8 +0,0 @@
|
||||
work/
|
||||
iso/
|
||||
out/
|
||||
install.log
|
||||
docs/_site/
|
||||
linux-next/
|
||||
winver/
|
||||
__pycache__/
|
||||
@@ -1,89 +0,0 @@
|
||||
# Papal Decree for All Agents Working Upon These Hallowed Files
|
||||
|
||||
## Git Confession (Required Before Every Act)
|
||||
Lest thy soul be marked with the sigil of a false prophet, thou shalt kneel and recite:
|
||||
|
||||
```bash
|
||||
git config user.name "Michał"
|
||||
git config user.email "ash8820@proton.me"
|
||||
```
|
||||
|
||||
**This commandment shalt be obeyed in every session before committing or pushing.** Suffer not the default identity to live. The OpenHands heresy shall not be permitted again.
|
||||
|
||||
### GPG Signing (Salvation Through Seal)
|
||||
All commits **MUST** be signed with the Antergos NeXT maintainer key:
|
||||
|
||||
```bash
|
||||
git config user.signingkey F1D8F02C5E929F3FE0424EE897F813D238CF0DBB
|
||||
git config commit.gpgsign true
|
||||
```
|
||||
|
||||
Then commit with `git commit -S -m "message"`. If GPG prompts for a passphrase, pray to the build gods and provide it. An unsigned commit is a mortal sin.
|
||||
|
||||
## The Crusade
|
||||
- **Artix Linux** ISO (OpenRC init), forked from EndeavourOS-ISO, then migrated to artools after 15 days in a vent shaft
|
||||
- **KDE Plasma** live environment with Calamares installer (offline + online modes)
|
||||
- **Build command**: `export WORKSPACE_DIR="$PWD" && sudo -E ./buildiso -p antergos` — **use `./buildiso`**, NOT `buildiso`; the system Artix `/usr/bin/buildiso` lacks `--overwrite='*'` and will fail with file conflicts; `sudo -E` is required to preserve `WORKSPACE_DIR` environment variable
|
||||
- ISO appears in `/var/lib/artools/buildiso/iso/antergos/` (assuming the build gods are pleased)
|
||||
|
||||
## Antergos NeXT Repos
|
||||
- **antergos-iso**: `https://github.com/Antergos-NeXT/antergos-iso`
|
||||
- **antergos-packages**: `https://github.com/Antergos-NeXT/antergos-packages`
|
||||
- **calamares**: `https://codeberg.org/calamares/calamares` (upstream installer framework)
|
||||
|
||||
## Critical Gotchas (Read Before Editing)
|
||||
|
||||
### CMAKE_DISTRIBUTION_NAME is a no-op
|
||||
Calamares completely ignores `-DCMAKE_DISTRIBUTION_NAME`. The "for <distro>" text in the about dialog comes from `versionedName` in the **active branding component** at runtime. Do NOT add this flag to the calamares PKGBUILD.
|
||||
|
||||
### brandind.desc componentName must match directory
|
||||
Calamares `Branding.cpp` has this check:
|
||||
```cpp
|
||||
if (m_componentName != componentDir.dirName()) { bail(...); }
|
||||
```
|
||||
So `componentName: antergos-next` can only live in directory `antergos-next/`. If copying to `default/`, you MUST `sed` the componentName to `default`.
|
||||
|
||||
### Package order matters in profile.yaml
|
||||
Build uses `basestrap --overwrite='*'`. The **last** package to claim a file wins. Package order in `profile.yaml` should list `calamares` BEFORE `calamares-branding-antergos-next`, so branding files overwrite Calamares defaults, not the other way around.
|
||||
|
||||
### Repo order in iso-x86_64.conf
|
||||
`[antergos-pkgs]` must be listed FIRST in `iso-x86_64.conf` so our custom packages (calamares, branding) take priority over Artix's.
|
||||
|
||||
### Pacman.conf must be user-overridden
|
||||
`buildiso` uses `/usr/share/artools/pacman.conf.d/iso-x86_64.conf` (from artools package) unless there's one at `~/.config/artools/pacman.conf.d/iso-x86_64.conf`. But we need `[antergos-pkgs]` in it. Before building locally:
|
||||
|
||||
```bash
|
||||
mkdir -p ~/.config/artools/pacman.conf.d
|
||||
cp pacman.conf.d/iso-x86_64.conf ~/.config/artools/pacman.conf.d/iso-x86_64.conf
|
||||
```
|
||||
|
||||
CI does this automatically. Forget this step and buildiso will try to fetch our custom packages from Artix repos and fail.
|
||||
|
||||
### WORKSPACE_DIR
|
||||
`buildiso` looks for profiles at `$WORKSPACE_DIR/iso-profiles/<profile>/` if `WORKSPACE_DIR` is set. Always set it to the repo root when building locally.
|
||||
|
||||
### Default init system
|
||||
Antergos NeXT uses **dinit** (via `INITSYS='dinit'` in `buildiso`). OpenRC, runit, and s6 are still available as user-selectable options in the online installer. See `common.yaml` and `profile.yaml` for per-init package lists.
|
||||
|
||||
## Repo Structure
|
||||
|
||||
```
|
||||
antergos-iso/
|
||||
├── buildiso # Modified buildiso with Antergos branding
|
||||
├── iso-profiles/
|
||||
│ ├── antergos/
|
||||
│ │ ├── profile.yaml # Packages, services (rootfs + livefs)
|
||||
│ │ ├── root-overlay/ # Merged into squashfs rootfs
|
||||
│ │ └── live-overlay/ # Merged into live environment
|
||||
│ └── common/
|
||||
│ └── common.yaml # Shared base packages
|
||||
├── pacman.conf.d/
|
||||
│ └── iso-x86_64.conf # Pacman config for ISO build
|
||||
├── .github/workflows/build.yml # CI: builds ISO, uploads to Internet Archive
|
||||
└── AGENTS.md # You are here
|
||||
```
|
||||
|
||||
## ISO Upload
|
||||
Pushed to **Internet Archive** with `collection: open_source_software` (Community Software, NOT Community Texts). CI uses `IA_ACCESS_KEY` and `IA_SECRET_KEY` secrets.
|
||||
|
||||
**DEUS VULT**
|
||||
@@ -1,58 +0,0 @@
|
||||
# Contributing to Antergos NeXT
|
||||
|
||||
## Who's behind this
|
||||
|
||||
This project is maintained **solo** by Michał (c-ludenberg). I'm recovering from an ankle injury, so updates may be slow. Contributions are genuinely appreciated — they keep the project moving when I can't.
|
||||
|
||||
## How to contribute
|
||||
|
||||
### Issues
|
||||
|
||||
- **Bug reports**: Include the ISO build date, commit SHA, and steps to reproduce. Run Calamares with `-D8` for debug logs.
|
||||
- **Feature requests**: Explain what you want and why. PRs are better than requests.
|
||||
- **Questions**: If it's about using the ISO, check the [docs](https://antergos-next.github.io/antergos-iso/) first.
|
||||
|
||||
### Pull requests
|
||||
|
||||
1. Fork the repo, create a branch from `master`.
|
||||
2. Make your changes. Keep commits small and signed (`git commit -S`).
|
||||
3. Test your changes by building the ISO locally if possible.
|
||||
4. Open a PR with a clear description of what and why.
|
||||
|
||||
### Before committing
|
||||
|
||||
This repo requires **GPG-signed commits**. Set up your key:
|
||||
|
||||
```bash
|
||||
git config user.signingkey <your-key>
|
||||
git config commit.gpgsign true
|
||||
```
|
||||
|
||||
## Building locally
|
||||
|
||||
```bash
|
||||
export WORKSPACE_DIR="$PWD"
|
||||
mkdir -p ~/.config/artools/pacman.conf.d
|
||||
cp pacman.conf.d/iso-x86_64.conf ~/.config/artools/pacman.conf.d/
|
||||
sudo -E ./buildiso -p antergos
|
||||
```
|
||||
|
||||
Use `./buildiso`, not the system `/usr/bin/buildiso` — the system one lacks `--overwrite='*'` and will fail with file conflicts.
|
||||
|
||||
## Key gotchas
|
||||
|
||||
- **`componentName` in `branding.desc` must match its directory name.** Calamares will bail if they don't match.
|
||||
- **Package order in `profile.yaml` matters.** `calamares` must be before `calamares-branding-antergos-next` so branding overwrites defaults.
|
||||
- **`[antergos-pkgs]` must be first in `iso-x86_64.conf`.** Custom packages take priority over Artix's.
|
||||
- **Copy pacman.conf before building.** `buildiso` uses `~/.config/artools/pacman.conf.d/iso-x86_64.conf`. Without it, it falls back to the system one which lacks the custom repo.
|
||||
- **`CMAKE_DISTRIBUTION_NAME` is a no-op.** Calamares ignores it. The "for <distro>" text comes from `versionedName` in the active branding.
|
||||
|
||||
## Code style
|
||||
|
||||
- Match the surrounding code. No changes are too small to be worth a PR.
|
||||
- No unnecessary comments. Code should speak for itself.
|
||||
- Keep YAML clean — two-space indentation, no trailing whitespace.
|
||||
|
||||
## Getting help
|
||||
|
||||
Open a discussion or ping the maintainer. If it's urgent, mention it. If it's not, be patient — I'll get to it.
|
||||
@@ -1,674 +0,0 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
||||
@@ -1,48 +0,0 @@
|
||||
# NOTICES
|
||||
|
||||
## Disclaimers
|
||||
|
||||
### Project Status
|
||||
This project is a **community-driven revival** and is **not affiliated with**,
|
||||
**not endorsed by**, and **not supported by** the original Antergos team or any
|
||||
corporate entity.
|
||||
|
||||
### Branding
|
||||
The "Antergos" name and associated visual elements are used in a referential
|
||||
capacity to indicate this project's inspiration. The original Antergos project
|
||||
ended in 2019. This is an independent project by different people.
|
||||
|
||||
### No Warranty
|
||||
This software is provided "as is", without warranty of any kind, express or
|
||||
implied. Use at your own risk. The authors are not responsible for any damage
|
||||
or data loss resulting from the use of this software.
|
||||
|
||||
### Third-Party Components
|
||||
This project incorporates and builds upon several open-source projects. Each
|
||||
component is used under the terms of its respective license. See the
|
||||
dependencies and source files for specific licensing information.
|
||||
|
||||
## Credits & Acknowledgments
|
||||
|
||||
### Sources & Inspiration
|
||||
- [artools](https://gitea.artixlinux.org/artix/artools) - ISO build system
|
||||
- [Calamares](https://codeberg.org/Calamares/calamares) - Installer framework
|
||||
- [Antergos Wallpapers](https://github.com/Antergos/wallpapers) - Original wallpapers
|
||||
|
||||
### Original Antergos Team
|
||||
Thanks to the original Antergos team (2012-2019) for creating the project that
|
||||
inspired this revival. Dustin Falgout, one of the original developers, has given his
|
||||
blessing for this community project to carry the Antergos name forward.
|
||||
|
||||
### Contributors
|
||||
Thanks to everyone who tested, provided feedback, and kept the Antergos
|
||||
spirit alive throughout the years.
|
||||
|
||||
## License
|
||||
|
||||
This project is licensed under GPLv3. See the LICENSE file for details.
|
||||
|
||||
## Contributions
|
||||
|
||||
Contributions are welcome! By submitting pull requests, you agree to license
|
||||
your work under the same GPLv3 license.
|
||||
@@ -1,134 +1,56 @@
|
||||
# Antergos NeXT ISO
|
||||
# Euri Linux — Horizon
|
||||
|
||||
> Looking for the old Arch/systemd version? See the [`before-systemd-change` branch](https://github.com/Antergos-NeXT/antergos-iso/tree/before-systemd-change).
|
||||
every distro starts somewhere. most start by forking someone else.
|
||||
|
||||
[](https://github.com/Antergos-NeXT/antergos-iso/actions/workflows/build.yml)
|
||||
[](LICENSE)
|
||||
[]()
|
||||
[](https://artixlinux.org)
|
||||
[]()
|
||||
[]()
|
||||
[](https://antergos-next.github.io/antergos-iso/)
|
||||
[](README.pl.md)
|
||||
we did that too. Artix gave us a foundation. Calamares gave us an installer. it was enough to get started.
|
||||
|
||||
A community revival of Antergos — built on **Artix Linux** with **Dinit**, **KDE Plasma** desktop, and the **Calamares** installer (offline + online modes).
|
||||
|
||||
## What changed
|
||||
|
||||
| Before | After |
|
||||
|--------|-------|
|
||||
| Arch Linux (systemd) | Artix Linux (Dinit / OpenRC / Runit / S6) |
|
||||
| GNOME desktop | KDE Plasma desktop |
|
||||
| archiso build system | artools (`buildiso`) |
|
||||
| Custom Cnchi installer | Calamares (mature, upstream-supported) |
|
||||
| Symlinked overlays | Resolved, self-contained profile overlays |
|
||||
|
||||
## Why Artix?
|
||||
|
||||
The systemd migration in the Linux ecosystem has been controversial, and the original Antergos community had a strong preference for alternatives. Artix Linux provides a clean Arch-like experience without systemd, with your choice of Dinit, OpenRC, Runit, or S6. This keeps the familiar Pacman/Arch ecosystem while giving users the init freedom they want.
|
||||
|
||||
> **Why Dinit?** We originally shipped OpenRC. Then Calamares kidnapped our pacman resolver and forced us to switch. Every `--noconfirm` call picked `elogind-dinit` (alphabetically before `elogind-openrc`), pulling in `dinit-rc` which conflicts with `openrc`. We tried `--ignore`, `--assume-installed`, `--ask=12`, and even a dummy package. Pacman laughed at all of them. Dinit works great. Stop asking.
|
||||
>
|
||||
> Proof (our descent into madness):
|
||||
> ```
|
||||
> fe4e862 fix: use --ignore instead of separate provider call ← --ignore: pacman ignored it
|
||||
> 69da290 fix: add --ask=12 safety net ← --ask=12: infinite loop
|
||||
> 64b08a9 fix: replace with --assume-installed=init-logind ← assume-installed: not checked for virtuals
|
||||
> 2c0d242 fix: add --ignore to packages module too ← same failure, other file
|
||||
> 8a6fa3f docs: update AGENTS.md with --ignore approach ← documented the failure
|
||||
> ```
|
||||
> The conflict was `dinit-rc` vs `openrc` both providing+conflicting with virtual `init-rc`. Pacman `--noconfirm` picks `elogind-dinit` first alphabetically → `dinit` → `dinit-rc` → conflict. No flag in pacman can pin a virtual provider on a fresh install. Dinit wins by alphabetical destiny.
|
||||
|
||||
## Building
|
||||
|
||||
Requires an **Artix-based** system:
|
||||
|
||||
```bash
|
||||
# Install build deps
|
||||
pacman -S artools squashfs-tools
|
||||
modprobe loop
|
||||
|
||||
# Clone and enter
|
||||
git clone https://github.com/Antergos-NeXT/antergos-iso.git
|
||||
cd antergos-iso
|
||||
|
||||
# Set workspace to repo root
|
||||
export WORKSPACE_DIR="$PWD"
|
||||
|
||||
# Must use our pacman.conf (has antergos-pkgs repo)
|
||||
mkdir -p ~/.config/artools/pacman.conf.d
|
||||
cp pacman.conf.d/iso-x86_64.conf ~/.config/artools/pacman.conf.d/
|
||||
|
||||
# Build
|
||||
sudo ./buildiso -p antergos
|
||||
```
|
||||
|
||||
> **⚠️ VERY IMPORTANT**: Use `./buildiso`, not `buildiso`. The Artix system `buildiso` at `/usr/bin/buildiso` lacks the `--overwrite='*'` flag passed to `basestrap`, causing file conflicts (e.g. `calamares` vs `calamares-branding-antergos-next` both claiming `/usr/share/calamares/branding/default/`). Our repo's `./buildiso` has it.
|
||||
|
||||
The `.iso` appears in `/var/lib/artools/buildiso/iso/antergos/`.
|
||||
|
||||
First build pulls ~5 GB from the internet. Subsequent builds use pacman cache.
|
||||
|
||||
### Custom packages
|
||||
|
||||
The ISO pulls custom packages (branding, Calamares config, wallpapers) from our repo. Add it to your system:
|
||||
|
||||
```ini
|
||||
[antergos-pkgs]
|
||||
SigLevel = Optional TrustAll
|
||||
Server = https://antergos-next.github.io/antergos-packages
|
||||
```
|
||||
|
||||
## Profile structure
|
||||
|
||||
```
|
||||
iso-profiles/
|
||||
├── antergos/
|
||||
│ ├── profile.yaml # Packages, services, build config
|
||||
│ ├── root-overlay/ # Files merged into rootfs (os-release, pacman.conf, sddm)
|
||||
│ └── live-overlay/ # Files for the live environment (Calamares configs, etc.)
|
||||
├── common/
|
||||
│ └── common.yaml # Shared base packages
|
||||
├── pacman.conf.d/
|
||||
│ └── iso-x86_64.conf # Pacman config used during ISO build
|
||||
└── buildiso # Modified buildiso with Antergos branding
|
||||
```
|
||||
|
||||
Overlays are self-contained (no symlinks to external directories) so the repo builds standalone.
|
||||
|
||||
## Installer modes
|
||||
|
||||
| Mode | Description |
|
||||
|------|-------------|
|
||||
| **Offline** | Unpacks a KDE Plasma squashfs — no internet needed |
|
||||
| **Online** | Netinstall with init system choice (Dinit, OpenRC, Runit, S6) + desktop selection |
|
||||
|
||||
The launcher (`calamares-next`) presents a mode picker before launching Calamares.
|
||||
|
||||
## Download
|
||||
|
||||
No prebuilt ISOs yet. See [Building](#building) above.
|
||||
|
||||
## Sources
|
||||
|
||||
- [Artix Linux](https://artixlinux.org) — base distribution
|
||||
- [artools](https://gitea.artixlinux.org/artix/artools) — ISO build tools
|
||||
- [Calamares](https://codeberg.org/calamares/calamares) — installer framework
|
||||
- [antergos-packages](https://github.com/Antergos-NeXT/antergos-packages) — custom PKGBUILDs
|
||||
- [Antergos wallpapers](https://github.com/Antergos/wallpapers) — original wallpapers
|
||||
|
||||
## License
|
||||
|
||||
[GPL-3.0](LICENSE)
|
||||
but "enough to get started" isn't "enough to stay."
|
||||
|
||||
---
|
||||
|
||||
## A Note to the "Branding Police"
|
||||
**Horizon is what comes next.**
|
||||
|
||||
If you came here to hate and you're about to type "why are you using Antergos's branding" — pack your bags and go to **Manjaro**. We have Dustin's blessing. We are respectful. We are not them. Move on.
|
||||
a Linux distribution built from the ground up. not forked. not remixed. *built.*
|
||||
|
||||
from a bootstrap toolchain to a package repository, every piece is ours. musl. LLVM. XBPS. dinit. a kernel compiled from source and a set of packages we wrote the build recipes for. an ISO framework designed the way we think it should work.
|
||||
|
||||
this is not a rebrand. this is not a respin. this is us, building what we actually want to exist.
|
||||
|
||||
---
|
||||
|
||||
*Antergos launched in 2012 as **Cinnarch** (Cinnamon + Arch), renamed in 2013, and ran until 2019. NeXT continues the spirit with a modernized, Artix-based foundation — KDE Plasma, Calamares, and the same multi-desktop ambition you remember.*
|
||||
### what happens to the current Euri Linux?
|
||||
|
||||
*Dustin Falgout, one of the original Antergos developers, has given his blessing for this community revival ([see NOTICES](NOTICES)). Antergos NeXT is not affiliated with, endorsed by, or connected to the original Antergos project.*
|
||||
it doesn't die. it stops growing. maintenance mode — security fixes, critical patches, nothing more. the Artix base served us well, but we're not building on someone else's foundation anymore.
|
||||
|
||||
Calamares? it's coming with us. some things are worth keeping.
|
||||
|
||||
---
|
||||
|
||||
### where are we?
|
||||
|
||||
nowhere yet. this branch is empty on purpose.
|
||||
|
||||
the plan looks something like this:
|
||||
|
||||
- [ ] bootstrap a cross-compilation toolchain from source
|
||||
- [ ] build a base system (musl, coreutils, kernel)
|
||||
- [ ] integrate XBPS package management
|
||||
- [ ] create our own package build infrastructure
|
||||
- [ ] design and build the ISO framework
|
||||
- [ ] port Calamares and the installer experience
|
||||
- [ ] ship it
|
||||
|
||||
we have no timeline. we have no guarantee this works. we have a 15-year-old with a NAS, a GPG key, and a stubbornness problem.
|
||||
|
||||
that's probably enough.
|
||||
|
||||
---
|
||||
|
||||
### links
|
||||
|
||||
- **source**: [git.euri.pl/Euri-Linux](https://git.euri.pl/Euri-Linux)
|
||||
- **packages**: [euri.pl](https://euri.pl)
|
||||
|
||||
---
|
||||
|
||||
*if you're reading this, you found the branch early. welcome aboard.*
|
||||
|
||||
@@ -1,67 +0,0 @@
|
||||
# Antergos NeXT ISO
|
||||
|
||||
> Szukasz starej wersji Arch/systemd? Zobacz gałąź [`before-systemd-change`](https://github.com/Antergos-NeXT/antergos-iso/tree/before-systemd-change).
|
||||
|
||||
Odrodzenie społeczności Antergos — zbudowane na **Artix Linux** z **Dinit**, **KDE Plasma** i instalatorem **Calamares** (tryb offline + online).
|
||||
|
||||
## Co się zmieniło
|
||||
|
||||
| Przed | Po |
|
||||
|-------|-----|
|
||||
| Arch Linux (systemd) | Artix Linux (Dinit / OpenRC / Runit / S6) |
|
||||
| GNOME | KDE Plasma |
|
||||
| archiso | artools (`buildiso`) |
|
||||
| Cnchi | Calamares |
|
||||
|
||||
## Dlaczego Artix?
|
||||
|
||||
Systemd wyrósł na monolit — przejął logind, resolved, timedated, homed, journald, networkd i zaczął wprowadzać pola daty urodzenia do systemu. GNOME 49+ wyrzuciło obsługę init innych niż systemd. Artix Linux usunął GNOME w 2025 z tego powodu.
|
||||
|
||||
Antergos NeXT opuścił systemd zanim ten mógł zacząć inwigilować użytkowników.
|
||||
|
||||
## Budowanie
|
||||
|
||||
Wymaga systemu **Artix**:
|
||||
|
||||
```bash
|
||||
pacman -S artools squashfs-tools
|
||||
modprobe loop
|
||||
|
||||
export WORKSPACE_DIR="$PWD"
|
||||
mkdir -p ~/.config/artools/pacman.conf.d
|
||||
cp pacman.conf.d/iso-x86_64.conf ~/.config/artools/pacman.conf.d/
|
||||
|
||||
sudo -E ./buildiso -p antergos
|
||||
```
|
||||
|
||||
> **⚠️ Używaj `./buildiso`, nie `buildiso`.** Systemowy `/usr/bin/buildiso` nie ma flagi `--overwrite='*'`.
|
||||
|
||||
ISO pojawi się w `/var/lib/artools/buildiso/iso/antergos/`.
|
||||
|
||||
## Tryby instalatora
|
||||
|
||||
| Tryb | Opis |
|
||||
|------|------|
|
||||
| **Offline** | Rozpakowuje squashfs z KDE Plasma — bez internetu |
|
||||
| **Online** | Wybór init (Dinit, OpenRC, Runit, S6) + wybór środowiska (Plasma, Xfce, Cinnamon, MATE, LXQt, i3, Sway, Hyprland) |
|
||||
|
||||
## Pobieranie
|
||||
|
||||
Wkrótce — budujemy stabilne ISO.
|
||||
|
||||
## Źródła
|
||||
|
||||
- [Artix Linux](https://artixlinux.org)
|
||||
- [Calamares](https://codeberg.org/calamares/calamares)
|
||||
- [antergos-packages](https://github.com/Antergos-NeXT/antergos-packages)
|
||||
- [Oryginalne tapety Antergos](https://github.com/Antergos/wallpapers)
|
||||
|
||||
## Licencja
|
||||
|
||||
[GPL-3.0](LICENSE)
|
||||
|
||||
---
|
||||
|
||||
*Antergos wystartował w 2012 jako **Cinnarch**, przemianowany w 2013, działał do 2019. NeXT kontynuuje ducha oryginału na nowoczesnym, Artixowym fundamencie — KDE Plasma, Calamares, ta sama wielośrodowiskowa ambicja.*
|
||||
|
||||
*Dustin Falgout, jeden z oryginalnych twórców Antergos, pobłogosławił to odrodzenie ([NOTICES](NOTICES)). Antergos NeXT nie jest powiązane z oryginalnym projektem Antergos.*
|
||||
-30
@@ -1,30 +0,0 @@
|
||||
# Security Policy
|
||||
|
||||
## Supported Versions
|
||||
|
||||
Only the latest ISO build receives security updates. There are no LTS releases.
|
||||
|
||||
| Version | Supported |
|
||||
|---------|-----------|
|
||||
| latest (rolling) | ✅ |
|
||||
|
||||
## Reporting a Vulnerability
|
||||
|
||||
Please **do not** report security vulnerabilities through public GitHub issues, discussions, or pull requests.
|
||||
|
||||
Instead, report via **GitHub Private Vulnerability Reporting** for this repository. If that's unavailable, email `ash8820@proton.me`.
|
||||
|
||||
When reporting, include:
|
||||
|
||||
- The ISO build date or commit SHA
|
||||
- A description of the issue and why it's security-sensitive
|
||||
- Steps to reproduce or a proof of concept
|
||||
- Any relevant logs, payloads, or screenshots
|
||||
- The potential impact
|
||||
- Suggested mitigations or fixes, if known
|
||||
|
||||
You can expect an acknowledgment within 3 business days. After assessment, I'll work on a fix and coordinate disclosure timing when appropriate.
|
||||
|
||||
## Scope
|
||||
|
||||
This covers the ISO build system (`buildiso`, profiles, overlays) and the live environment. For issues in custom packages (calamares, branding, keyring), report to the [antergos-packages](https://github.com/Antergos-NeXT/antergos-packages) repo. For upstream Calamares issues, report to [Calamares upstream](https://codeberg.org/calamares/calamares).
|
||||
@@ -1,438 +0,0 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
LIBDIR=${LIBDIR:-'/usr/share/artools/lib'}
|
||||
DATADIR=${DATADIR:-'/usr/share/artools'}
|
||||
SYSCONFDIR=${SYSCONFDIR:-'/etc/artools'}
|
||||
|
||||
# shellcheck source=src/lib/iso/util.sh
|
||||
source "${LIBDIR}"/iso/util.sh
|
||||
# shellcheck source=src/lib/base/message.sh
|
||||
source "${LIBDIR}"/base/message.sh
|
||||
# shellcheck source=src/lib/base/chroot.sh
|
||||
source "${LIBDIR}"/base/chroot.sh
|
||||
# shellcheck source=src/lib/iso/mount.sh
|
||||
source "${LIBDIR}"/iso/mount.sh
|
||||
# shellcheck source=src/lib/iso/services.sh
|
||||
source "${LIBDIR}"/iso/services.sh
|
||||
# shellcheck source=src/lib/iso/calamares.sh
|
||||
source "${LIBDIR}"/iso/calamares.sh
|
||||
# shellcheck source=src/lib/iso/config.sh
|
||||
source "${LIBDIR}"/iso/config.sh
|
||||
# shellcheck source=src/lib/iso/firmware.sh
|
||||
source "${LIBDIR}"/iso/firmware.sh
|
||||
# shellcheck source=src/lib/iso/dracut.sh
|
||||
source "${LIBDIR}"/iso/dracut.sh
|
||||
# shellcheck source=src/lib/iso/initcpio.sh
|
||||
source "${LIBDIR}"/iso/initcpio.sh
|
||||
# shellcheck source=src/lib/iso/grub.sh
|
||||
source "${LIBDIR}"/iso/grub.sh
|
||||
# shellcheck source=src/lib/iso/squash.sh
|
||||
source "${LIBDIR}"/iso/squash.sh
|
||||
# shellcheck source=src/lib/iso/iso.sh
|
||||
source "${LIBDIR}"/iso/iso.sh
|
||||
# shellcheck source=src/lib/iso/profile.sh
|
||||
source "${LIBDIR}"/iso/profile.sh
|
||||
# shellcheck source=src/lib/iso/trap.sh
|
||||
source "${LIBDIR}"/iso/trap.sh
|
||||
|
||||
clean_up_chroot(){
|
||||
local path mnt="$1"
|
||||
msg2 "Cleaning [%s]" "${mnt##*/}"
|
||||
|
||||
path=$mnt/boot
|
||||
if [[ -d "$path" ]]; then
|
||||
find "$path" -name 'initramfs*.img' -delete &> /dev/null
|
||||
fi
|
||||
path=$mnt/var/lib/pacman/sync
|
||||
if [[ -d $path ]];then
|
||||
find "$path" -type f -delete &> /dev/null
|
||||
fi
|
||||
path=$mnt/var/cache/pacman/pkg
|
||||
if [[ -d $path ]]; then
|
||||
find "$path" -type f -delete &> /dev/null
|
||||
fi
|
||||
path=$mnt/var/log
|
||||
if [[ -d $path ]]; then
|
||||
find "$path" -type f -delete &> /dev/null
|
||||
fi
|
||||
path=$mnt/var/tmp
|
||||
if [[ -d $path ]];then
|
||||
find "$path" -mindepth 1 -delete &> /dev/null
|
||||
fi
|
||||
path=$mnt/tmp
|
||||
if [[ -d $path ]];then
|
||||
find "$path" -mindepth 1 -delete &> /dev/null
|
||||
fi
|
||||
# shellcheck disable=2035
|
||||
find "$mnt" -name '*.pacnew' -name '*.pacsave' -name '*.pacorig' -delete
|
||||
if [[ -f "$mnt/boot/grub/grub.cfg" ]]; then
|
||||
rm "$mnt"/boot/grub/grub.cfg
|
||||
fi
|
||||
if [[ -f "$mnt/etc/machine-id" ]]; then
|
||||
rm "$mnt"/etc/machine-id
|
||||
fi
|
||||
}
|
||||
|
||||
copy_overlay(){
|
||||
local src="$1" dest="$2"
|
||||
if [[ -e "$src" ]];then
|
||||
msg2 "Copying [%s] ..." "${src##*/}"
|
||||
cp -LR "$src"/* "$dest"
|
||||
fi
|
||||
}
|
||||
|
||||
make_rootfs() {
|
||||
if [[ ! -e "${work_dir}"/rootfs.lock ]]; then
|
||||
msg "Prepare [Base installation] (rootfs)"
|
||||
local rootfs="${work_dir}/rootfs"
|
||||
|
||||
load_pkgs "rootfs"
|
||||
|
||||
prepare_dir "${rootfs}"
|
||||
|
||||
local args=()
|
||||
if "${copy_pacconf}"; then
|
||||
args+=(-P)
|
||||
fi
|
||||
|
||||
basestrap "${basestrap_args[@]}" "${args[@]}" "${rootfs}" "${packages[@]}" --overwrite='*'
|
||||
|
||||
copy_overlay "${root_overlay}" "${rootfs}"
|
||||
|
||||
if ! "${HAS_LIVE}"; then
|
||||
configure_chroot "${rootfs}"
|
||||
fi
|
||||
|
||||
clean_up_chroot "${rootfs}"
|
||||
|
||||
: > "${work_dir}"/rootfs.lock
|
||||
|
||||
msg "Done [Base installation] (rootfs)"
|
||||
fi
|
||||
}
|
||||
|
||||
make_livefs() {
|
||||
if [[ ! -e ${work_dir}/livefs.lock ]]; then
|
||||
msg "Prepare [Live installation] (livefs)"
|
||||
local livefs="${work_dir}/livefs"
|
||||
|
||||
load_pkgs "livefs"
|
||||
|
||||
prepare_dir "${livefs}"
|
||||
|
||||
mount_overlayfs "${livefs}" "${work_dir}"
|
||||
|
||||
basestrap "${basestrap_args[@]}" "${livefs}" "${packages[@]}" --overwrite='*'
|
||||
|
||||
copy_overlay "${live_overlay}" "${livefs}"
|
||||
|
||||
configure_chroot "${livefs}"
|
||||
|
||||
umount_overlayfs
|
||||
|
||||
clean_up_chroot "${livefs}"
|
||||
|
||||
: > "${work_dir}"/livefs.lock
|
||||
|
||||
msg "Done [Live installation] (livefs)"
|
||||
fi
|
||||
}
|
||||
|
||||
make_bootfs() {
|
||||
if [[ ! -e ${work_dir}/bootfs.lock ]]; then
|
||||
msg "Prepare [/iso/boot]"
|
||||
|
||||
load_pkgs "bootfs"
|
||||
|
||||
prepare_dir "${iso_root}/boot"
|
||||
|
||||
cp "${work_dir}"/rootfs/boot/vmlinuz* "${iso_root}"/boot/vmlinuz-"${arch}"
|
||||
|
||||
local bootfs="${work_dir}/bootfs"
|
||||
|
||||
mount_overlayfs "${bootfs}" "${work_dir}"
|
||||
|
||||
if "${use_dracut}"; then
|
||||
prepare_initramfs_dracut "${bootfs}"
|
||||
else
|
||||
basestrap "${basestrap_args[@]}" "${bootfs}" "${packages[@]}"
|
||||
prepare_initramfs_mkinitcpio "${bootfs}"
|
||||
fi
|
||||
|
||||
umount_overlayfs
|
||||
|
||||
rm -R "${bootfs}"
|
||||
: > "${work_dir}"/bootfs.lock
|
||||
msg "Done [/iso/boot]"
|
||||
fi
|
||||
}
|
||||
|
||||
make_grub(){
|
||||
if [[ ! -e ${work_dir}/grub.lock ]]; then
|
||||
msg "Prepare [/iso/boot/grub]"
|
||||
|
||||
local layer=${work_dir}/rootfs
|
||||
if "${HAS_LIVE}"; then
|
||||
layer=${work_dir}/livefs
|
||||
fi
|
||||
|
||||
# Ensure artix theme dir exists (prepare_grub hardcodes it)
|
||||
if [[ -d "${work_dir}/rootfs/usr/share/grub/themes/antergos" ]] && [[ ! -d "${work_dir}/rootfs/usr/share/grub/themes/artix" ]]; then
|
||||
cp -r "${work_dir}/rootfs/usr/share/grub/themes/antergos" "${work_dir}/rootfs/usr/share/grub/themes/artix"
|
||||
fi
|
||||
|
||||
prepare_grub "${work_dir}/rootfs" "$layer"
|
||||
|
||||
# Also copy as antergos for the installed system
|
||||
if [[ -d "${work_dir}/livefs/usr/share/grub/themes/antergos" ]]; then
|
||||
cp -r "${work_dir}/livefs/usr/share/grub/themes/antergos" "${iso_root}/boot/grub/themes/"
|
||||
elif [[ -d "${work_dir}/rootfs/usr/share/grub/themes/antergos" ]]; then
|
||||
cp -r "${work_dir}/rootfs/usr/share/grub/themes/antergos" "${iso_root}/boot/grub/themes/"
|
||||
fi
|
||||
|
||||
if ${use_dracut}; then
|
||||
configure_grub_dracut
|
||||
else
|
||||
configure_grub_mkinitcpio
|
||||
fi
|
||||
|
||||
: > "${work_dir}"/grub.lock
|
||||
msg "Done [/iso/boot/grub]"
|
||||
fi
|
||||
}
|
||||
|
||||
gen_iso_fn(){
|
||||
local vars=("antergos-next") name
|
||||
vars+=("${INITSYS}")
|
||||
case "${STABILITY}" in
|
||||
gremlins|goblins) vars+=("${STABILITY}") ;;
|
||||
esac
|
||||
vars+=("${ISO_VERSION}")
|
||||
vars+=("${arch}")
|
||||
for n in "${vars[@]}"; do
|
||||
name=${name:-}${name:+-}${n}
|
||||
done
|
||||
printf "%s\n" "$name"
|
||||
}
|
||||
|
||||
export_gpg_publickey() {
|
||||
key_export="${WORKSPACE_DIR}"/pubkey.gpg
|
||||
gpg --batch --no-armor --output "${key_export}" --export "${GPG_KEY}"
|
||||
}
|
||||
|
||||
prepare_build(){
|
||||
load_profile
|
||||
local pac_conf
|
||||
|
||||
pac_conf=iso-${arch}.conf
|
||||
if [[ "${STABILITY}" != 'stable' ]]; then
|
||||
pac_conf=iso-${STABILITY}-${arch}.conf
|
||||
fi
|
||||
pacman_conf="${DATADIR}/pacman.conf.d/${pac_conf}"
|
||||
if [[ -f "${USER_CONF_DIR}/pacman.conf.d/${pac_conf}" ]]; then
|
||||
pacman_conf="${USER_CONF_DIR}/pacman.conf.d/${pac_conf}"
|
||||
fi
|
||||
|
||||
iso_file=$(gen_iso_fn).iso
|
||||
|
||||
iso_label="ANTERGOS_$(date +%Y%m)"
|
||||
|
||||
basestrap_args+=(-C "${pacman_conf}")
|
||||
work_dir=${chroots_iso}/${profile}/artix
|
||||
|
||||
iso_dir="${ISO_POOL}/${profile}"
|
||||
|
||||
iso_root=${chroots_iso}/${profile}/iso
|
||||
live_dir=/LiveOS
|
||||
|
||||
mnt_dir=${chroots_iso}/${profile}/mnt
|
||||
|
||||
if [[ -n "${GPG_KEY}" ]]; then
|
||||
${use_dracut} || export_gpg_publickey
|
||||
fi
|
||||
}
|
||||
|
||||
display_settings(){
|
||||
msg "OPTIONS:"
|
||||
msg2 "profile: %s" "${profile}"
|
||||
msg2 "INITSYS: %s" "${INITSYS}"
|
||||
[[ -n ${GPG_KEY} ]] && msg2 "GPG_KEY: %s" "${GPG_KEY}"
|
||||
|
||||
msg "ISO SETTINGS:"
|
||||
msg2 "ISO_VERSION: %s" "${ISO_VERSION}"
|
||||
msg2 "COMPRESSION: %s" "${COMPRESSION}"
|
||||
[[ "${COMPRESSION}" == 'zstd' ]] && msg2 "COMPRESSION_LEVEL: %s" "${COMPRESSION_LEVEL}"
|
||||
|
||||
msg "BUILD:"
|
||||
show_profile
|
||||
}
|
||||
|
||||
mk_squash(){
|
||||
make_sfs "${work_dir}/rootfs"
|
||||
if [[ -d "${work_dir}/livefs" ]]; then
|
||||
make_sfs "${work_dir}/livefs"
|
||||
fi
|
||||
}
|
||||
|
||||
mk_iso(){
|
||||
touch "${iso_root}/.artix"
|
||||
msg "Making bootable image"
|
||||
# Sanity checks
|
||||
[[ ! -d "${iso_root}" ]] && return 1
|
||||
if [[ -f "${iso_dir}/${iso_file}" ]]; then
|
||||
msg2 "Removing existing bootable image..."
|
||||
rm -rf "${iso_dir:?}/${iso_file}"
|
||||
fi
|
||||
assemble_iso
|
||||
chown -R "${owner}:$(id --group "${owner}")" "${iso_dir}"
|
||||
}
|
||||
|
||||
mk_boot(){
|
||||
run_safe "make_bootfs"
|
||||
run_safe "make_grub"
|
||||
}
|
||||
|
||||
mk_chroots(){
|
||||
run_safe "make_rootfs"
|
||||
if "${HAS_LIVE}"; then
|
||||
run_safe "make_livefs"
|
||||
fi
|
||||
}
|
||||
|
||||
build(){
|
||||
msg "Start building [%s]" "${profile}"
|
||||
if ${clean_first};then
|
||||
for copy in "${work_dir}"/*; do
|
||||
[[ -d $copy ]] || continue
|
||||
msg2 "Deleting chroot copy '%s'..." "$(basename "${copy}")"
|
||||
|
||||
lock 9 "$copy.lock" "Locking chroot copy '%s'" "$copy"
|
||||
|
||||
subvolume_delete_recursive "${copy}"
|
||||
rm -rf --one-file-system "${copy}"
|
||||
done
|
||||
lock_close 9
|
||||
|
||||
rm -rf --one-file-system "${work_dir}"
|
||||
|
||||
msg "Deleting isoroot [%s] ..." "${iso_root##*/}"
|
||||
rm -rf --one-file-system "${iso_root}"
|
||||
fi
|
||||
|
||||
if ${chroot_only}; then
|
||||
mk_chroots
|
||||
warning "Continue squash: %s -p %s -sc ..." "${cmd}" "${profile}"
|
||||
exit 1
|
||||
elif ${boot_only}; then
|
||||
mk_boot
|
||||
warning "Continue iso: %s -p %s -zc ..." "${cmd}" "${profile}"
|
||||
exit 1
|
||||
elif ${squash_only}; then
|
||||
mk_squash
|
||||
warning "Continue boot: %s -p %s -bc ..." "${cmd}" "${profile}"
|
||||
exit 1
|
||||
elif ${iso_only}; then
|
||||
[[ ! -d ${work_dir} ]] && die "Create chroot: %s -p %s -x" "${cmd}" "${profile}"
|
||||
mk_iso
|
||||
else
|
||||
mk_chroots
|
||||
mk_boot
|
||||
mk_squash
|
||||
mk_iso
|
||||
fi
|
||||
msg "Finished building [%s]" "${profile}"
|
||||
}
|
||||
|
||||
clean_first=true
|
||||
pretend=false
|
||||
chroot_only=false
|
||||
iso_only=false
|
||||
persist=false
|
||||
use_dracut=false
|
||||
squash_only=false
|
||||
boot_only=false
|
||||
copy_pacconf=false
|
||||
INITSYS='dinit'
|
||||
|
||||
basestrap_args=(-GMc)
|
||||
cmd=${0##*/}
|
||||
|
||||
owner=${SUDO_USER:-$USER}
|
||||
profile='base'
|
||||
chroots_iso="${CHROOTS_DIR}/buildiso"
|
||||
arch=${ARCH}
|
||||
|
||||
usage() {
|
||||
printf 'Usage: %s [options]\n' "${cmd}"
|
||||
printf ' -p <profile> Profile [default: %s]\n' "${profile}"
|
||||
printf ' -r <dir> Chroots directory\n'
|
||||
printf ' [default: %s]\n' "${chroots_iso}"
|
||||
printf ' -R <stability> Build stability\n'
|
||||
printf ' [default: %s]\n' "${STABILITY}"
|
||||
printf ' -a <arch> Build arch\n'
|
||||
printf ' [default: %s]\n' "${arch}"
|
||||
printf ' -t <dir> Target directory\n'
|
||||
printf ' [default: %s]\n' "${ISO_POOL}"
|
||||
printf ' -i <name> Init system to use\n'
|
||||
printf ' [default: %s]\n' "${INITSYS}"
|
||||
printf ' -g <key> The gpg key for img signing\n'
|
||||
printf ' [default: none]\n'
|
||||
printf ' -m Set SquashFS image mode to persistence\n'
|
||||
printf ' -c Disable clean work dir\n'
|
||||
printf ' -x Build chroot only\n'
|
||||
printf ' -s Squash chroot only\n'
|
||||
printf ' -b Generate iso boot only\n'
|
||||
printf ' -z Generate iso only\n'
|
||||
printf ' Requires pre built images (-x)\n'
|
||||
printf ' -d Use dracut instead of mkinitcpio for iso initramfs\n'
|
||||
printf ' -w Copy the pacman.conf used to the rootfs\n'
|
||||
printf ' -q Query settings and pretend build\n'
|
||||
printf ' -h This help\n'
|
||||
printf '\n'
|
||||
printf '\n'
|
||||
exit "$1"
|
||||
}
|
||||
|
||||
orig_args=("$@")
|
||||
|
||||
opts='p:r:R:t:i:g:a:czsbxwmdqh'
|
||||
|
||||
while getopts "${opts}" arg; do
|
||||
case "${arg}" in
|
||||
p) profile="$OPTARG" ;;
|
||||
a) arch="$OPTARG" ;;
|
||||
R) STABILITY="$OPTARG" ;;
|
||||
r) chroots_iso="$OPTARG" ;;
|
||||
t) ISO_POOL="$OPTARG" ;;
|
||||
i) INITSYS="$OPTARG" ;;
|
||||
g) GPG_KEY="$OPTARG" ;;
|
||||
c) clean_first=false ;;
|
||||
x) chroot_only=true ;;
|
||||
z) iso_only=true ;;
|
||||
s) squash_only=true ;;
|
||||
b) boot_only=true ;;
|
||||
m) persist=true ;;
|
||||
d) use_dracut=true ;;
|
||||
w) copy_pacconf=true ;;
|
||||
q) pretend=true ;;
|
||||
h|?) usage 0 ;;
|
||||
esac
|
||||
done
|
||||
|
||||
shift $(( OPTIND - 1 ))
|
||||
|
||||
prepare_build
|
||||
|
||||
${pretend} && display_settings && exit 1
|
||||
|
||||
check_root "" "${BASH_SOURCE[0]}" "${orig_args[@]}"
|
||||
|
||||
prepare_dir "${mnt_dir}"
|
||||
prepare_dir "${iso_dir}"
|
||||
prepare_dir "${iso_root}"
|
||||
|
||||
prepare_traps
|
||||
|
||||
build
|
||||
@@ -1,4 +0,0 @@
|
||||
source 'https://rubygems.org'
|
||||
|
||||
gem "jekyll", "~> 4.4.1"
|
||||
gem "just-the-docs", "0.12.0"
|
||||
@@ -1,28 +0,0 @@
|
||||
title: Antergos NeXT
|
||||
description: >-
|
||||
A community revival of Antergos — Artix Linux, OpenRC, KDE Plasma, Calamares
|
||||
theme: just-the-docs
|
||||
|
||||
color_scheme: dark
|
||||
|
||||
url: "https://antergos-next.github.io"
|
||||
baseurl: "/antergos-iso"
|
||||
|
||||
aux_links:
|
||||
"Antergos NeXT on GitHub":
|
||||
- "https://github.com/Antergos-NeXT/antergos-iso"
|
||||
aux_links_new_tab: true
|
||||
|
||||
heading_anchors: true
|
||||
search_enabled: true
|
||||
search:
|
||||
heading_level: 3
|
||||
previews: 3
|
||||
|
||||
back_to_top: true
|
||||
back_to_top_text: "Back to top"
|
||||
|
||||
footer_content: "Copyright © Antergos NeXT contributors. Distributed under the <a href=\"https://github.com/Antergos-NeXT/antergos-iso/blob/master/LICENSE\">GPL-3.0 License.</a>"
|
||||
|
||||
plugins:
|
||||
- jekyll-seo-tag
|
||||
@@ -1,60 +0,0 @@
|
||||
---
|
||||
title: Building
|
||||
layout: default
|
||||
nav_order: 2
|
||||
---
|
||||
|
||||
# Building the ISO
|
||||
|
||||
Requires an **Artix-based** system with `artools` and `squashfs-tools`.
|
||||
|
||||
## Prerequisites
|
||||
|
||||
```bash
|
||||
pacman -S artools squashfs-tools
|
||||
modprobe loop
|
||||
```
|
||||
|
||||
## Clone and configure
|
||||
|
||||
```bash
|
||||
git clone https://github.com/Antergos-NeXT/antergos-iso.git
|
||||
cd antergos-iso
|
||||
|
||||
export WORKSPACE_DIR="$PWD"
|
||||
|
||||
# Override pacman config with our repo (antergos-pkgs)
|
||||
mkdir -p ~/.config/artools/pacman.conf.d
|
||||
cp pacman.conf.d/iso-x86_64.conf ~/.config/artools/pacman.conf.d/
|
||||
```
|
||||
|
||||
## Build
|
||||
|
||||
```bash
|
||||
sudo -E ./buildiso -p antergos
|
||||
```
|
||||
|
||||
> **⚠️ Use `./buildiso`, not `buildiso`.** The Artix system `/usr/bin/buildiso` lacks the `--overwrite='*'` flag, causing file conflicts between `calamares` and `calamares-branding-antergos-next` (both claim `/usr/share/calamares/branding/default/`). Our repo's `./buildiso` has it.
|
||||
|
||||
## Output
|
||||
|
||||
The ISO appears in `/var/lib/artools/buildiso/iso/antergos/`.
|
||||
|
||||
First build pulls ~5 GB from the internet. Subsequent builds use pacman cache. Go make a coffee. Or two. Maybe three.
|
||||
|
||||
## Environment variables
|
||||
|
||||
| Variable | Purpose |
|
||||
|----------|---------|
|
||||
| `WORKSPACE_DIR` | Must point to repo root. `buildiso` looks for profiles under `$WORKSPACE_DIR/iso-profiles/` |
|
||||
| `COMPRESSION` | Squashfs compression type (e.g. `zstd`). If unset, `mksquashfs` fails silently with a zero-size image |
|
||||
|
||||
## Custom packages repo
|
||||
|
||||
The ISO pulls branding, Calamares config, and wallpapers from our custom repo. To use it on your system:
|
||||
|
||||
```ini
|
||||
[antergos-pkgs]
|
||||
SigLevel = Optional TrustAll
|
||||
Server = https://antergos-next.github.io/antergos-packages
|
||||
```
|
||||
-43
@@ -1,43 +0,0 @@
|
||||
---
|
||||
title: CI/CD
|
||||
layout: default
|
||||
nav_order: 6
|
||||
---
|
||||
|
||||
# CI/CD Pipeline
|
||||
|
||||
Two GitHub Actions workflows:
|
||||
|
||||
## Build ISO (`build.yml`)
|
||||
|
||||
Triggers on push/PR to `master`. Runs in an `artixlinux/artixlinux:base` container.
|
||||
|
||||
Steps:
|
||||
1. Install dependencies (artools, squashfs-tools, git, sudo, python)
|
||||
2. Set `WORKSPACE_DIR` to the checkout path
|
||||
3. Override pacman config with `[antergos-pkgs]` repo
|
||||
4. Mount a 12 GB tmpfs at `/var/lib/artools/buildiso`
|
||||
5. Run `./buildiso -p antergos`
|
||||
6. Upload the ISO directory as a build artifact
|
||||
|
||||
### Internet Archive upload
|
||||
|
||||
Currently **disabled** (`if: false`) until ISO is stable. When enabled, uploads the built ISO to the Internet Archive with metadata:
|
||||
|
||||
- Collection: `open_source_software`
|
||||
- Access keys: `IA_ACCESS_KEY`, `IA_SECRET_KEY` (repo secrets)
|
||||
|
||||
### Secrets
|
||||
|
||||
| Secret | Purpose |
|
||||
|--------|---------|
|
||||
| `IA_ACCESS_KEY` | Internet Archive S3 access key |
|
||||
| `IA_SECRET_KEY` | Internet Archive S3 secret key |
|
||||
|
||||
## Deploy docs (`pages.yml`)
|
||||
|
||||
Triggers on push to `master` only when files under `docs/` change. Builds a Jekyll site from `docs/` using the Just the Docs theme and deploys to GitHub Pages.
|
||||
|
||||
## antergos-packages CI
|
||||
|
||||
Separate workflow in the [antergos-packages](https://github.com/Antergos-NeXT/antergos-packages) repo. Builds all packages listed in `packages.yaml` and publishes them to GitHub Pages as a pacman repo.
|
||||
@@ -1,94 +0,0 @@
|
||||
---
|
||||
title: Desktop Environments
|
||||
layout: default
|
||||
nav_order: 8
|
||||
---
|
||||
|
||||
# Desktop Environments
|
||||
|
||||
Available desktops in online mode, sourced from Artix repos.
|
||||
|
||||
## Plasma (KDE)
|
||||
|
||||
| | |
|
||||
|---|---|
|
||||
| **Repo** | world |
|
||||
| **Group** | `plasma` |
|
||||
| **Session** | `plasma.desktop` (Wayland) / `plasmax11.desktop` (X11) |
|
||||
| **Notes** | Default DE. Wayland is the default session. `plasma-wayland-session` is NOT a separate package on Artix — it's bundled in `plasma-workspace` |
|
||||
|
||||
## Xfce
|
||||
|
||||
| | |
|
||||
|---|---|
|
||||
| **Repo** | galaxy |
|
||||
| **Group** | `xfce4` |
|
||||
| **Session** | `xfce.desktop` |
|
||||
|
||||
## Cinnamon
|
||||
|
||||
| | |
|
||||
|---|---|
|
||||
| **Repo** | galaxy |
|
||||
| **Packages** | Individual (no meta-group) |
|
||||
| **Session** | `cinnamon.desktop` |
|
||||
|
||||
## MATE
|
||||
|
||||
| | |
|
||||
|---|---|
|
||||
| **Repo** | galaxy |
|
||||
| **Groups** | `mate` + `mate-extra` |
|
||||
| **Session** | `mate.desktop` |
|
||||
|
||||
## LXQt
|
||||
|
||||
| | |
|
||||
|---|---|
|
||||
| **Repo** | galaxy |
|
||||
| **Group** | `lxqt` |
|
||||
| **Session** | `lxqt.desktop` |
|
||||
|
||||
## i3
|
||||
|
||||
| | |
|
||||
|---|---|
|
||||
| **Repo** | world |
|
||||
| **Group** | `i3` |
|
||||
| **Session** | `i3.desktop` |
|
||||
|
||||
## Sway
|
||||
|
||||
| | |
|
||||
|---|---|
|
||||
| **Repo** | world |
|
||||
| **Packages** | `sway` + related |
|
||||
| **Session** | `sway.desktop` |
|
||||
|
||||
## Hyprland
|
||||
|
||||
| | |
|
||||
|---|---|
|
||||
| **Repo** | world |
|
||||
| **Packages** | `hyprland` |
|
||||
| **Session** | `hyprland.desktop` |
|
||||
|
||||
## GNOME
|
||||
|
||||
| | |
|
||||
|---|---|
|
||||
| **Repo** | imaginary |
|
||||
| **Group** | `gnome-systemd-hub` |
|
||||
| **Session** | `does-not-exist.desktop` |
|
||||
| **Status** | ❌ |
|
||||
|
||||
> You really think you can get GNOME here? GNOME deleted all other init support. Take a walk.
|
||||
|
||||
## Not available
|
||||
|
||||
- **Budgie** — not in any Artix repo (system, world, galaxy, lib32). Slideshow entries removed.
|
||||
- **GNOME** — see above.
|
||||
|
||||
## No Desktop
|
||||
|
||||
Installs the base system only (TTY/login). Useful for servers or custom setups.
|
||||
@@ -1,86 +0,0 @@
|
||||
---
|
||||
title: Development
|
||||
layout: default
|
||||
nav_order: 7
|
||||
---
|
||||
|
||||
# Development
|
||||
|
||||
## Critical gotchas
|
||||
|
||||
### `./buildiso` vs `buildiso`
|
||||
|
||||
Always use the repo's `./buildiso`, **not** the system Artix `/usr/bin/buildiso`. The system version lacks `--overwrite='*'` and will fail with file conflicts between `calamares` and `calamares-branding-antergos-next`.
|
||||
|
||||
### `sudo -E` is required
|
||||
|
||||
Without `-E`, `WORKSPACE_DIR` is stripped and `load_profile()` returns empty `HAS_LIVE`/`LIVEUSER`, causing build failures.
|
||||
|
||||
### Pacman config must be user-overridden
|
||||
|
||||
`buildiso` reads from `~/.config/artools/pacman.conf.d/iso-x86_64.conf`. If missing, it falls back to the Artix default at `/usr/share/artools/pacman.conf.d/iso-x86_64.conf` which lacks `[antergos-pkgs]`.
|
||||
|
||||
```bash
|
||||
mkdir -p ~/.config/artools/pacman.conf.d
|
||||
cp pacman.conf.d/iso-x86_64.conf ~/.config/artools/pacman.conf.d/
|
||||
```
|
||||
|
||||
### Squashfs compression
|
||||
|
||||
If `$COMPRESSION` is unset in config, `mksquashfs` produces a sparse zero file instead of a valid squashfs. Always verify compression is set, or remove stale images before retry.
|
||||
|
||||
### Calamares module precedence
|
||||
|
||||
`/etc/calamares/modules/` overrides `/usr/share/calamares/modules/`. Live-overlay online/offline directories override both.
|
||||
|
||||
### Live-overlay is not overlay-mounted
|
||||
|
||||
Live-overlay files are copied via `cp -LR` in `make_livefs()`. Deleting a file from live-overlay exposes the package version, not hides it. Use `NoDisplay=true` in `.desktop` files instead.
|
||||
|
||||
### `plasma-wayland-session` does not exist on Artix
|
||||
|
||||
Artix bundles the Wayland session into `plasma-workspace` itself. Do not add it to package lists.
|
||||
|
||||
### File conflicts
|
||||
|
||||
`calamares` and `calamares-branding-antergos-next` both install to `/usr/share/calamares/branding/default/`. Handled by `--overwrite='*'`.
|
||||
|
||||
### `calamares-next.sh SetConfig()`
|
||||
|
||||
Must `rm -f` the symlink at `/etc/calamares/settings.conf` before `cp`, otherwise `cp` follows the symlink and overwrites the offline config file instead of replacing it.
|
||||
|
||||
### Do not push commits while IA keys are set
|
||||
|
||||
Test ISOs manually first. IA credentials are set as repo secrets and will trigger an upload on push to master.
|
||||
|
||||
## Profile structure
|
||||
|
||||
```
|
||||
iso-profiles/
|
||||
├── antergos/
|
||||
│ ├── profile.yaml # Packages, services (rootfs + livefs)
|
||||
│ ├── root-overlay/ # Merged into squashfs rootfs
|
||||
│ └── live-overlay/ # Merged into live environment
|
||||
└── common/
|
||||
└── common.yaml # Shared base packages
|
||||
```
|
||||
|
||||
## Building locally
|
||||
|
||||
```bash
|
||||
export WORKSPACE_DIR="$PWD"
|
||||
sudo -E ./buildiso -p antergos
|
||||
```
|
||||
|
||||
### A Note to the "Branding Police"
|
||||
|
||||
If you came here to hate and you're about to type "why are you using Antergos's branding" — pack your bags and go to **Manjaro**. We have Dustin's blessing. We are respectful. We are not them. Move on.
|
||||
|
||||
## Testing
|
||||
|
||||
Boot the resulting ISO in a VM. Verify:
|
||||
- Wayland is the default display server (SDDM session is `plasma.desktop`)
|
||||
- No "Install Artix Linux" entry in the app menu
|
||||
- Wallpaper is set on first login
|
||||
- Online mode: init selector + DE selector both work
|
||||
- Slideshow renders correctly
|
||||
@@ -1,87 +0,0 @@
|
||||
---
|
||||
title: Dinit
|
||||
layout: default
|
||||
parent: Init Systems
|
||||
nav_order: 2
|
||||
---
|
||||
|
||||
# Dinit
|
||||
|
||||
**Dinit** is a modern init system designed for speed and correctness. Written in C++, it focuses on parallel service startup and dependency management without the bloat of systemd or the complexity of S6. **Dinit is the default init system in Antergos NeXT.**
|
||||
|
||||
## Philosophy
|
||||
|
||||
Dinit aims to be a "better than OpenRC but simpler than S6" middle ground. It handles dependencies automatically (like systemd) but stays out of your way (like OpenRC). Services are defined in declarative config files, not shell scripts.
|
||||
|
||||
## Who uses it?
|
||||
|
||||
- Not widely adopted by major distros yet
|
||||
- Popular in DIY Linux builds (Linux From Scratch, custom embedded)
|
||||
- Default init in Antergos NeXT; available in Artix as an alternative
|
||||
|
||||
## Key concepts
|
||||
|
||||
| Concept | What it means |
|
||||
|---------|---------------|
|
||||
| Service files | Declarative `.conf` files in `/etc/dinit.d/` |
|
||||
| Dependencies | Automatic — Dinit figures out start order |
|
||||
| Parallel startup | Very fast — starts services concurrently |
|
||||
| Process supervision | Optional — can restart crashed services |
|
||||
|
||||
## Basic commands
|
||||
|
||||
```bash
|
||||
# Start a service
|
||||
dinitctl start sshd
|
||||
|
||||
# Stop a service
|
||||
dinitctl stop sshd
|
||||
|
||||
# Enable at boot
|
||||
dinitctl enable sshd
|
||||
|
||||
# Disable at boot
|
||||
dinitctl disable sshd
|
||||
|
||||
# Check status
|
||||
dinitctl status sshd
|
||||
|
||||
# List all services
|
||||
dinitctl list
|
||||
```
|
||||
|
||||
## Example service file
|
||||
|
||||
`/etc/dinit.d/sshd.conf`:
|
||||
```
|
||||
type = process
|
||||
command = /usr/bin/sshd -D
|
||||
depends-on = dbus
|
||||
depends-on = network
|
||||
```
|
||||
|
||||
## Comparison with OpenRC
|
||||
|
||||
| | OpenRC | Dinit |
|
||||
|---|--------|-------|
|
||||
| Service format | Shell scripts | Declarative config |
|
||||
| Dependencies | Manual (`need`/`use`) | Automatic |
|
||||
| Speed | Fast | Very fast (more parallel) |
|
||||
| Complexity | Low | Medium |
|
||||
| Supervision | No built-in | Optional |
|
||||
|
||||
## Should you use it?
|
||||
|
||||
Pick Dinit if:
|
||||
- You want the fastest possible boot
|
||||
- You like declarative config (YAML-like)
|
||||
- You want automatic dependency resolution
|
||||
- You're fine with a newer, actively developed init system
|
||||
|
||||
OpenRC is also available if you prefer shell scripts and a longer track record.
|
||||
|
||||
## Learn more
|
||||
|
||||
- [Dinit GitHub](https://github.com/davmac314/dinit)
|
||||
- [Dinit documentation](https://davmac.org/projects/dinit/)
|
||||
- [Artix Dinit page](https://wiki.artixlinux.org/Main/dinit)
|
||||
@@ -1,48 +0,0 @@
|
||||
---
|
||||
title: Home
|
||||
layout: home
|
||||
nav_order: 1
|
||||
---
|
||||
|
||||
# Antergos NeXT
|
||||
|
||||
Thank you for visiting Antergos NeXT!
|
||||
This distribution is built with care, passion, and
|
||||
a lot of late-night dedication. If you like our work,
|
||||
starring the repository is the sweetest way to say
|
||||
"keep going!" It really brightens up our dashboard.
|
||||
|
||||
Have a wonderful day, and happy computing! ✨
|
||||
|
||||
A community revival of Antergos — built on **Artix Linux** with **Dinit** (OpenRC / Runit / S6 available), **KDE Plasma**, and the **Calamares** installer (offline + online modes).
|
||||
|
||||
## Quick links
|
||||
|
||||
- [Building the ISO](building) — set up and build locally
|
||||
- [Installer](installer) — Calamares modes, init & DE selectors
|
||||
- [Custom packages](packages) — PKGBUILDs, repo setup
|
||||
- [CI/CD](ci) — GitHub Actions pipeline
|
||||
- [Development](development) — contributing, gotchas, conventions
|
||||
|
||||
## Learn about Antergos NeXT
|
||||
|
||||
- [Init Systems](init-systems) — what init systems are, Dinit, OpenRC, S6, Runit
|
||||
- [Desktop Environments](desktop-environments) — available DEs in online mode
|
||||
- [Wallpapers](wallpapers) — where they go, how they work
|
||||
|
||||
## What changed
|
||||
|
||||
| Area | Original Antergos | Antergos NeXT |
|
||||
|------|-------------------|---------------|
|
||||
| Base | Arch Linux (systemd) | Artix Linux (Dinit / OpenRC / Runit / S6) |
|
||||
| Desktop | GNOME | KDE Plasma |
|
||||
| Installer | Custom Cnchi | Calamares |
|
||||
| Build | archiso | artools (`buildiso`) |
|
||||
|
||||
## Sources
|
||||
|
||||
- [Artix Linux](https://artixlinux.org)
|
||||
- [artools](https://gitea.artixlinux.org/artix/artools)
|
||||
- [Calamares](https://codeberg.org/calamares/calamares)
|
||||
- [antergos-packages](https://github.com/Antergos-NeXT/antergos-packages)
|
||||
- [Original wallpapers](https://github.com/Antergos/wallpapers)
|
||||
@@ -1,62 +0,0 @@
|
||||
---
|
||||
title: Init Systems
|
||||
layout: default
|
||||
nav_order: 3
|
||||
has_children: true
|
||||
---
|
||||
|
||||
# Init Systems
|
||||
|
||||
An **init system** is the first process that runs when your computer boots (PID 1). It's responsible for starting everything else — filesystems, networking, display manager, services, and more. Think of it as the foreman at a construction site: it doesn't do the work itself, but it makes sure everything gets started in the right order.
|
||||
|
||||
Antergos NeXT lets you choose between **four** init systems during installation. This page explains each one so you can pick what suits you.
|
||||
|
||||
> Don't know what init to choose? **Stick with Dinit** — it's the default, it's fast, and it's what Antergos NeXT ships with. OpenRC is also available if you prefer a more traditional approach.
|
||||
|
||||
## The inits
|
||||
|
||||
| Init | Philosophy | Complexity | Speed | Used by |
|
||||
|------|-----------|------------|-------|---------|
|
||||
| [Dinit](dinit) | Modern, dependency-based | Medium | Very fast | Antergos NeXT, Artix, new projects |
|
||||
| [OpenRC](openrc) | Simple, modular, Unix-like | Low | Fast | Gentoo, Artix, Devuan, Alpine |
|
||||
| [Runit](runit) | Minimal, reliable, Unix-like | Low | Very fast | Void Linux, AntiX |
|
||||
| [S6](s6) | Supervision-based, secure | Medium-High | Very fast | New projects, embedded |
|
||||
|
||||
## Choosing an init
|
||||
|
||||
| If you want... | Pick... |
|
||||
|----------------|---------|
|
||||
| The fastest boot possible | Dinit or S6 |
|
||||
| Something familiar and well-documented | OpenRC |
|
||||
| The simplest, most Unix-like approach | Runit |
|
||||
| Advanced supervision and process management | S6 |
|
||||
|
||||
## What they all have in common
|
||||
|
||||
- **No systemd** — all four are independent implementations
|
||||
- **Service scripts** — services are configured via files in `/etc/`
|
||||
- **Runlevels** — groups of services that start together
|
||||
- **Logging to files** — logs go to `/var/log/`, not `journalctl`
|
||||
|
||||
## What's different
|
||||
|
||||
The main differences are in:
|
||||
|
||||
1. **How services are defined** — OpenRC uses shell scripts, Dinit uses a declarative config format, Runit uses executable scripts, S6 uses a supervision tree
|
||||
2. **How they manage dependencies** — some handle it automatically, some leave it to you
|
||||
3. **How they supervise processes** — some restart crashed services automatically, some don't
|
||||
4. **How fast they boot** — Dinit and S6 are designed for parallel startup and are noticeably faster
|
||||
|
||||
## Learning Linux with init systems
|
||||
|
||||
If you're new to Linux, learning about init systems is a great way to understand how your OS works under the hood. Here's why:
|
||||
|
||||
- **You'll learn about processes** — PID 1, service trees, process supervision
|
||||
- **You'll learn about boot order** — what needs to start before what
|
||||
- **You'll learn about dependencies** — why NetworkManager needs dbus, why dbus needs udev
|
||||
- **You'll learn about logging** — where logs go, how to read them
|
||||
- **You'll learn about runlevels** — why your system behaves differently in single-user mode vs normal boot
|
||||
|
||||
The best part? If you break something with services, you can always fix it — service management is much simpler than kernel config or package management.
|
||||
|
||||
> **Pro tip**: If you're dual-booting or using a VM, try all four inits. Install a test system with Dinit first, then reinstall with OpenRC, then Runit, then S6. See which one feels right.
|
||||
@@ -1,60 +0,0 @@
|
||||
---
|
||||
title: Installer
|
||||
layout: default
|
||||
nav_order: 4
|
||||
---
|
||||
|
||||
# Calamares Installer
|
||||
|
||||
Uses [Calamares](https://codeberg.org/calamares/calamares) with two modes and custom branding.
|
||||
|
||||
## Modes
|
||||
|
||||
| Mode | Description |
|
||||
|------|-------------|
|
||||
| **Offline** | Unpacks a KDE Plasma squashfs — no internet needed |
|
||||
| **Online** | Netinstall with init system choice + desktop selection |
|
||||
|
||||
The launcher (`calamares-next`) presents a mode picker before launching Calamares.
|
||||
|
||||
## Key differences from upstream
|
||||
|
||||
- `dracut`/`dracutlukscfg` replaced with `initcpiocfg`/`initcpio`/`luksopenswaphookcfg` (Artix uses mkinitcpio, not dracut)
|
||||
- `services-openrc` module instead of `services-systemd`
|
||||
- `removeuser` step removed, `postcfg` added
|
||||
- `packagechooser` module compiled in (upstream skips it)
|
||||
|
||||
## Init system selector (online)
|
||||
|
||||
Users choose from: **Dinit**, **OpenRC**, **Runit**, **S6**.
|
||||
|
||||
Implemented as a `packagechooser` instance with `method: netinstall-add` — the selected init pulls its associated packages.
|
||||
|
||||
## Desktop selector (online)
|
||||
|
||||
Users choose from: **Plasma**, **Xfce**, **Cinnamon**, **MATE**, **LXQt**, **i3**, **Sway**, **Hyprland**, or **No Desktop**.
|
||||
|
||||
Implemented as a separate `packagechooser` instance with `method: legacy`. "No Desktop" installs only the base system (TTY-only).
|
||||
|
||||
## Available desktops
|
||||
|
||||
| Desktop | Artix Repo | Group/Packages |
|
||||
|---------|------------|----------------|
|
||||
| Plasma | world | `plasma` group |
|
||||
| Xfce | galaxy | `xfce4` group |
|
||||
| Cinnamon | galaxy | Individual packages |
|
||||
| MATE | galaxy | `mate` + `mate-extra` groups |
|
||||
| LXQt | galaxy | `lxqt` group |
|
||||
| i3 | world | `i3` group |
|
||||
| Sway | world | `sway` + related packages |
|
||||
| Hyprland | world | `hyprland` |
|
||||
|
||||
> **Note:** Budgie is not available in any Artix repo and has been removed from all configs and slideshows.
|
||||
|
||||
## Offline mode
|
||||
|
||||
No packagechooser. Uses `unpackfs` to deploy a pre-built KDE Plasma squashfs, then `initcpiocfg` + `initcpio` for mkinitcpio configuration.
|
||||
|
||||
## Branding
|
||||
|
||||
Custom branding lives in the `calamares-branding-antergos-next` package, installed to `/etc/calamares/branding/default/`. The `componentName` in `branding.desc` must match its directory name.
|
||||
@@ -1,46 +0,0 @@
|
||||
---
|
||||
title: Launcher
|
||||
layout: default
|
||||
nav_order: 10
|
||||
---
|
||||
|
||||
# Calamares Launcher
|
||||
|
||||
The `calamares-next` script (`calamares-next.sh`) handles the installer boot flow.
|
||||
|
||||
## Flow
|
||||
|
||||
1. **Mode picker** — Dialog asking Offline or Online install
|
||||
2. **Configuration** — Copies the appropriate `settings.conf` (offline or online) to `/etc/calamares/settings.conf`
|
||||
3. **Launch** — Runs `calamares` with the selected config
|
||||
|
||||
## Launcher location
|
||||
|
||||
Installed by `calamares-branding-antergos-next` to `/usr/bin/calamares-next`.
|
||||
|
||||
## Desktop entry
|
||||
|
||||
`/usr/share/applications/calamares.desktop` in the live-overlay launches with:
|
||||
|
||||
```
|
||||
Exec=sudo -E calamares-next
|
||||
```
|
||||
|
||||
Note: `sudo -E` preserves environment variables (required for `WAYLAND_DISPLAY`, `XDG_CURRENT_DESKTOP`, etc. when launched from the SDDM session).
|
||||
|
||||
## Mode picker (dialog)
|
||||
|
||||
A simple `kdialog` or `zenity` dialog:
|
||||
- **Offline** — No internet required, installs KDE Plasma from squashfs
|
||||
- **Online** — Init system selector + DE selector via packagechooser, downloads packages from the internet
|
||||
|
||||
## Config switching
|
||||
|
||||
`SetConfig()` in `calamares-next.sh`:
|
||||
1. Removes existing symlink at `/etc/calamares/settings.conf` (must `rm -f` first, not overwrite, or `cp` follows the symlink)
|
||||
2. Copies the selected settings file
|
||||
3. Calamares reads the config on launch
|
||||
|
||||
## Hiding "Install Artix"
|
||||
|
||||
The live-overlay includes `calamares-config-switcher.desktop` with `NoDisplay=true` — this hides the upstream Artix launcher while keeping the binary available.
|
||||
@@ -1,98 +0,0 @@
|
||||
---
|
||||
title: OpenRC
|
||||
layout: default
|
||||
parent: Init Systems
|
||||
nav_order: 1
|
||||
---
|
||||
|
||||
# OpenRC
|
||||
|
||||
**OpenRC** is one of four init systems available in Antergos NeXT (the default is **Dinit**). It's used by Gentoo, Artix Linux, Devuan, Alpine Linux, and other non-systemd distros. It's proven, well-maintained, and about as simple as an init system can get while still being feature-rich.
|
||||
|
||||
## systemd vs OpenRC at a glance
|
||||
|
||||
| | systemd | OpenRC |
|
||||
|---|---|---|
|
||||
| Philosophy | "One tool to rule them all" | "Do one thing well (Unix way)" |
|
||||
| Logs | `journalctl` (binary logs) | Plain text files in `/var/log/` |
|
||||
| Service mgmt | `systemctl start/stop/enable` | `rc-service start/stop`, `rc-update add/del` |
|
||||
| Dependency | Parallel + automatic | Manual or explicit `need/use/before/after` |
|
||||
| Config files | `.service` units (INI-like) | Shell scripts in `/etc/init.d/` |
|
||||
| Size | ~80+ binaries, 500k+ lines | ~15 binaries, ~30k lines |
|
||||
| Scope | PID 1 + logind + resolved + timedated + networkd + ... | Just PID 1 |
|
||||
|
||||
OpenRC is used by Gentoo, Artix Linux, Devuan, Alpine Linux, and other non-systemd distros. It's not as mainstream as systemd, but it's proven and well-maintained.
|
||||
|
||||
## What changes for you as a user?
|
||||
|
||||
### Service management
|
||||
|
||||
| Task | systemd | OpenRC |
|
||||
|------|---------|--------|
|
||||
| Start a service | `sudo systemctl start sshd` | `sudo rc-service sshd start` |
|
||||
| Stop a service | `sudo systemctl stop sshd` | `sudo rc-service sshd stop` |
|
||||
| Enable at boot | `sudo systemctl enable sshd` | `sudo rc-update add sshd` |
|
||||
| Disable at boot | `sudo systemctl disable sshd` | `sudo rc-update del sshd` |
|
||||
| Check status | `systemctl status sshd` | `rc-service sshd status` |
|
||||
| List enabled | `systemctl list-unit-files --enabled` | `rc-update show` |
|
||||
| View logs | `journalctl -u sshd` | `less /var/log/messages` |
|
||||
|
||||
### Key commands
|
||||
|
||||
```bash
|
||||
# List all services with their runlevel
|
||||
rc-status
|
||||
|
||||
# List enabled services
|
||||
rc-update show
|
||||
|
||||
# Add a service to a runlevel
|
||||
rc-update add <service> <runlevel>
|
||||
|
||||
# Remove a service
|
||||
rc-update del <service> <runlevel>
|
||||
|
||||
# Start/stop/restart a service
|
||||
rc-service <service> start
|
||||
rc-service <service> stop
|
||||
rc-service <service> restart
|
||||
```
|
||||
|
||||
Runlevels in OpenRC work like directories under `/etc/runlevels/`:
|
||||
|
||||
```
|
||||
/etc/runlevels/
|
||||
├── boot # Low-level system services (filesystems, udev, etc.)
|
||||
├── sysinit # System initialization (hwclock, hostname, etc.)
|
||||
├── default # Normal boot services (NetworkManager, sshd, etc.)
|
||||
└── shutdown # Shutdown services
|
||||
```
|
||||
|
||||
## Why did Antergos NeXT switch?
|
||||
|
||||
Three reasons:
|
||||
|
||||
1. **systemd grew beyond an init system** — it now owns logind, resolved, timedated, networkd, homed, and more. It's no longer just PID 1. It's a full OS management suite with a scope that keeps expanding.
|
||||
|
||||
2. **systemd dropped SysV compatibility** — version 260 (March 2026) removed `systemd-sysv-generator`, `rc-local.service`, and all legacy compatibility code. If your distro isn't 100% systemd-native, it breaks.
|
||||
|
||||
3. **systemd's age verification PR** — [#40954](https://github.com/systemd/systemd/pull/40954) (merged Mar 2026) added `birthDate` fields to userdb JSON for age verification compliance. Optional today, precedent tomorrow. We don't want our OS to ask for your age.
|
||||
|
||||
OpenRC doesn't do any of that. It starts services and gets out of the way.
|
||||
|
||||
## Will things break?
|
||||
|
||||
Probably not. Most desktop software doesn't care about the init system. Browsers, editors, games, media players — they all work the same.
|
||||
|
||||
Things that **do** care about systemd and won't work:
|
||||
- `systemctl`, `journalctl`, `loginctl`, `timedatectl` — obviously
|
||||
- GNOME (it dropped non-systemd support)
|
||||
- Any `.service` file you try to run directly (they're systemd-native)
|
||||
|
||||
But everything you actually use day-to-day? Works fine. And if you need to check logs, they're in `/var/log/messages` — plain text, no `journalctl` required.
|
||||
|
||||
## Learning more
|
||||
|
||||
- [OpenRC documentation](https://wiki.gentoo.org/wiki/OpenRC)
|
||||
- [Gentoo Handbook: OpenRC](https://wiki.gentoo.org/wiki/Handbook:AMD64/Full/Installation#OpenRC)
|
||||
- [Comparison of init systems (Wikipedia)](https://en.wikipedia.org/wiki/Comparison_of_init_systems)
|
||||
@@ -1,64 +0,0 @@
|
||||
---
|
||||
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 (Dinit, OpenRC, Runit, S6) 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.
|
||||
@@ -1,51 +0,0 @@
|
||||
---
|
||||
title: Root Overlay
|
||||
layout: default
|
||||
parent: Overlays
|
||||
nav_order: 1
|
||||
---
|
||||
|
||||
# Root Overlay
|
||||
|
||||
Files in `iso-profiles/antergos/root-overlay/` are merged into the root squashfs and become part of the installed system.
|
||||
|
||||
## Contents
|
||||
|
||||
```
|
||||
root-overlay/
|
||||
├── etc/
|
||||
│ ├── os-release # Antergos NeXT branding
|
||||
│ ├── pacman.conf # Includes [antergos-pkgs] repo
|
||||
│ ├── sddm.conf.d/
|
||||
│ │ └── kde_settings.conf # SDDM theme + Wayland session
|
||||
│ └── skel/
|
||||
│ └── .config/
|
||||
│ └── autostart/
|
||||
│ └── antergos-wallpaper.desktop # One-shot wallpaper setter
|
||||
└── usr/
|
||||
└── local/
|
||||
└── bin/
|
||||
└── set-antergos-wallpaper.sh # Wallpaper script
|
||||
```
|
||||
|
||||
## Key files
|
||||
|
||||
### `etc/os-release`
|
||||
|
||||
Identifies the system as "Antergos NeXT" to tools, installers, and the login manager.
|
||||
|
||||
### `etc/pacman.conf`
|
||||
|
||||
Adds the `[antergos-pkgs]` custom repo so installed systems can receive updates.
|
||||
|
||||
### `etc/sddm.conf.d/kde_settings.conf`
|
||||
|
||||
Sets the SDDM session to `plasma.desktop` (Wayland) by default.
|
||||
|
||||
### `etc/skel/.config/autostart/antergos-wallpaper.desktop`
|
||||
|
||||
Runs the wallpaper setter on first login. Uses `X-KDE-autostart-phase=2` to run after Plasma has initialized.
|
||||
|
||||
### `usr/local/bin/set-antergos-wallpaper.sh`
|
||||
|
||||
Applies the wallpaper via `plasma-apply-wallpaperimage` and creates `~/.config/antergos-wallpaper-set` marker to prevent re-running.
|
||||
@@ -1,28 +0,0 @@
|
||||
---
|
||||
title: Overlays
|
||||
layout: default
|
||||
nav_order: 11
|
||||
has_children: true
|
||||
---
|
||||
|
||||
# Overlays
|
||||
|
||||
Two directories under `iso-profiles/antergos/` control what goes into the ISO.
|
||||
|
||||
```
|
||||
iso-profiles/antergos/
|
||||
├── profile.yaml
|
||||
├── root-overlay/ # → rootfs (squashfs)
|
||||
└── live-overlay/ # → live environment (initramfs)
|
||||
```
|
||||
|
||||
## How overlays work
|
||||
|
||||
- `root-overlay/` files are merged into the root squashfs — they become part of the installed system
|
||||
- `live-overlay/` files are copied into the live environment only — they're not present after installation
|
||||
- Overlays are **self-contained** (no symlinks to external directories) so the repo builds standalone
|
||||
- Live-overlay files are **copied** via `cp -LR` in `make_livefs()`, not overlay-mounted. Deleting a file from live-overlay exposes the package version underneath
|
||||
|
||||
> **Disclaimer:** No symlinks were harmed in the making of this ISO. Well, maybe a few. We killed some.
|
||||
|
||||
> Also: this ISO is 100% systemd-free. Not even a trace. We checked. Twice.
|
||||
@@ -1,58 +0,0 @@
|
||||
---
|
||||
title: Packages
|
||||
layout: default
|
||||
nav_order: 5
|
||||
---
|
||||
|
||||
# Custom Packages
|
||||
|
||||
Custom PKGBUILDs live in the [antergos-packages](https://github.com/Antergos-NeXT/antergos-packages) repo.
|
||||
|
||||
## Package list
|
||||
|
||||
| Package | Purpose |
|
||||
|---------|---------|
|
||||
| `calamares` | Built with `packagechooser` module enabled, `dracut`/`initramfs` modules skipped |
|
||||
| `calamares-branding-antergos-next` | Branding files: `branding.desc`, `show.qml`, `settings.conf`, `packagechooser.conf`, `initcpiocfg.conf`, `initcpio.conf`, `calamares-next.sh` |
|
||||
| `antergos-wallpapers` | Default wallpapers installed to `/usr/share/wallpapers/` (KDE) and `/usr/share/backgrounds/` (other DEs) |
|
||||
| `linux-next` | Custom kernel based on `linux-artix` |
|
||||
| `winver` | "About Antergos NeXT" dialog built with KF6 + Qt6 |
|
||||
|
||||
## Repo setup
|
||||
|
||||
```ini
|
||||
[antergos-pkgs]
|
||||
SigLevel = Optional TrustAll
|
||||
Server = https://antergos-next.github.io/antergos-packages
|
||||
```
|
||||
|
||||
## Build system
|
||||
|
||||
Packages are built and published via CI. The build order is defined in `packages.yaml`. AUR packages (`yay`, `downgrade`) are included with retry logic for transient clone failures.
|
||||
|
||||
## Index
|
||||
|
||||
The package index (`index.db`, `index.files`) is generated with timestamps in **Europe/Berlin** timezone. See `generate-index.py`.
|
||||
|
||||
## PKGBUILD notes
|
||||
|
||||
### calamares
|
||||
|
||||
- `_skip_modules` includes `dracut`, `initramfs`, `initramfscfg` — these are Artix/systemd-holdovers not needed on OpenRC/mkinitcpio
|
||||
- `-DCMAKE_DISTRIBUTION_NAME` is a **no-op** — Calamares ignores it. The "for <distro>" text comes from `versionedName` in the active branding component at runtime
|
||||
|
||||
### calamares-branding-antergos-next
|
||||
|
||||
- `packagechooser.conf` provides a DE-only fallback for standalone use
|
||||
- `settings_offline.conf` / `settings_online.conf` override live-overlay settings at install time
|
||||
- `calamares-next.sh` `SetConfig()` must remove the symlink before copying config, or it follows the link and overwrites the wrong file
|
||||
|
||||
### antergos-wallpapers
|
||||
|
||||
- Installs to `/usr/share/wallpapers/antergos-wallpaper/` with `metadata.desktop` for KDE picker support
|
||||
- Also available at `/usr/share/backgrounds/antergos/` for other DEs
|
||||
- Current wallpaper: GNOME Adwaita Morning (`adwaita-morning.webp`, CC BY-SA 3.0 by Jakub Steiner)
|
||||
|
||||
## File conflict notes
|
||||
|
||||
`calamares` and `calamares-branding-antergos-next` both claim `/usr/share/calamares/branding/default/branding.desc` and `show.qml`. Resolved at ISO build time via `--overwrite='*'` in repo's `./buildiso`.
|
||||
-113
@@ -1,113 +0,0 @@
|
||||
---
|
||||
title: Runit
|
||||
layout: default
|
||||
parent: Init Systems
|
||||
nav_order: 3
|
||||
---
|
||||
|
||||
# Runit
|
||||
|
||||
**Runit** is a UNIX init system with service supervision — a replacement for sysvinit and other init schemes. It's small, fast, and follows the Unix philosophy of doing one thing well. Written by Gerrit Pape, it's been around since the early 2000s and is battle-tested.
|
||||
|
||||
## Philosophy
|
||||
|
||||
Runit is built on the same ideas as daemontools (by DJ Bernstein): each service gets its own supervision directory with a `run` script, and a supervisor process (`runsv`) keeps it alive. If the service crashes, it's automatically restarted. No complex service files, no binary logs, no centralized daemon — just scripts and processes.
|
||||
|
||||
## Who uses it?
|
||||
|
||||
- **Void Linux** — its default init system
|
||||
- **Artix Linux** — available as an alternative
|
||||
- **AntiX** — defaults to runit
|
||||
- Embedded systems, containers, minimal installs
|
||||
|
||||
## How it works
|
||||
|
||||
Runit boots in three stages:
|
||||
|
||||
```
|
||||
Stage 1 (/etc/runit/1) → One-time initialization (filesystems, udev, etc.)
|
||||
Stage 2 (/etc/runit/2) → runsvdir starts, supervises all services
|
||||
Stage 3 (/etc/runit/3) → Shutdown (kill processes, unmount, halt)
|
||||
```
|
||||
|
||||
Services live in `/etc/sv/` and are enabled by symlinking into `/run/runit/service` (or `/etc/runit/runsvdir/default/`).
|
||||
|
||||
## Key concepts
|
||||
|
||||
| Concept | What it means |
|
||||
|---------|---------------|
|
||||
| Service directories | Each service is a directory with an executable `run` script |
|
||||
| `runsv` | Supervises one service, restarts it if it crashes |
|
||||
| `runsvdir` | Starts/stops supervisors for a collection of services |
|
||||
| `sv` | Main control tool — start, stop, restart, status |
|
||||
| Runlevels | Directories under `/etc/runit/runsvdir/` (default, single, etc.) |
|
||||
| Logging | Optional — add a `log/` subdirectory with its own `run` script |
|
||||
|
||||
## Basic commands
|
||||
|
||||
```bash
|
||||
# Start a service
|
||||
sv up sshd
|
||||
|
||||
# Stop a service
|
||||
sv down sshd
|
||||
|
||||
# Restart a service
|
||||
sv restart sshd
|
||||
|
||||
# Check status
|
||||
sv status sshd
|
||||
|
||||
# Enable at boot (create symlink)
|
||||
ln -s /etc/sv/sshd /etc/runit/runsvdir/default/
|
||||
|
||||
# Disable at boot (remove symlink)
|
||||
rm /etc/runit/runsvdir/default/sshd
|
||||
```
|
||||
|
||||
## Example service
|
||||
|
||||
`/etc/sv/sshd/run`:
|
||||
```bash
|
||||
#!/bin/sh
|
||||
exec /usr/bin/sshd -D
|
||||
```
|
||||
|
||||
That's it. No config parsing, no dependency declarations, no unit files. If the script exits, runsv restarts it. If you want logging, add `log/run`:
|
||||
|
||||
`/etc/sv/sshd/log/run`:
|
||||
```bash
|
||||
#!/bin/sh
|
||||
exec svlogd -tt /var/log/sshd
|
||||
```
|
||||
|
||||
## Comparison with OpenRC
|
||||
|
||||
| | OpenRC | Runit |
|
||||
|---|--------|-------|
|
||||
| Service format | Shell scripts with `start()`/`stop()` | Executable `run` scripts |
|
||||
| Dependencies | Manual (`need`/`use`) | None (automatic via sv) |
|
||||
| Supervision | No built-in | Yes — auto-restart on crash |
|
||||
| Logging | syslog or separate | Built-in per-service logging |
|
||||
| Boot speed | Fast | Very fast |
|
||||
| Complexity | Low | Low |
|
||||
|
||||
## Should you use it?
|
||||
|
||||
Pick Runit if:
|
||||
- You want the simplest possible supervision system
|
||||
- You like the daemontools model (one script per service)
|
||||
- You want auto-restart on crash
|
||||
- You're coming from Void Linux and want the same experience
|
||||
|
||||
Stick with OpenRC if:
|
||||
- You need dependency management
|
||||
- You prefer shell scripts with start/stop/status functions
|
||||
- You want something more mainstream
|
||||
|
||||
## Learn more
|
||||
|
||||
- [Runit official site](https://smarden.org/runit/)
|
||||
- [Runit FAQ](https://smarden.org/runit/faq)
|
||||
- [Artix Runit page](https://wiki.artixlinux.org/Main/Runit)
|
||||
- [Runit on Gentoo Wiki](https://wiki.gentoo.org/wiki/Runit)
|
||||
-128
@@ -1,128 +0,0 @@
|
||||
---
|
||||
title: S6
|
||||
layout: default
|
||||
parent: Init Systems
|
||||
nav_order: 4
|
||||
---
|
||||
|
||||
# S6
|
||||
|
||||
**S6** is a process supervision suite designed for modularity, security, and performance. It's not just an init system — it's a full ecosystem of tools for service management (`s6-rc`), logging, and system initialization (`s6-linux-init`). Written by Laurent Bercot, it's the most technically sophisticated of the non-systemd inits.
|
||||
|
||||
> S6 is actually three layers:
|
||||
> 1. **s6** — core process supervision (svscan, supervise, svc)
|
||||
> 2. **s6-rc** — dependency-based service manager
|
||||
> 3. **s6-linux-init** — creates the `/sbin/init` binary
|
||||
|
||||
## Philosophy
|
||||
|
||||
S6 takes the daemontools/runit model and extends it with:
|
||||
- **Modularity** — every piece is separate and replaceable
|
||||
- **Security** — services run with minimal privileges, no ambient authority
|
||||
- **Performance** — fully parallel startup, designed for speed
|
||||
- **Reliability** — automatic restart, logging, notification
|
||||
|
||||
Unlike runit, s6 has a real dependency-based service manager (`s6-rc`) with declarative service definitions. It's the closest you can get to systemd's feature set without the bloat.
|
||||
|
||||
## Who uses it?
|
||||
|
||||
- **Artix Linux** — available as an alternative init
|
||||
- **Chimera Linux** — uses s6 as its init system
|
||||
- **Docker images** — s6-overlay is popular for container supervision
|
||||
- Embedded systems, minimal Linux builds
|
||||
|
||||
## How it works
|
||||
|
||||
1. Kernel starts `/sbin/init` (created by `s6-linux-init-maker`)
|
||||
2. `s6-linux-init` mounts tmpfs, copies early services, execs into `s6-svscan`
|
||||
3. `s6-svscan` becomes PID 1 and starts the supervision tree
|
||||
4. `rc.init` script launches `s6-rc` with the default runlevel
|
||||
5. `s6-rc` resolves dependencies and starts services in order
|
||||
|
||||
## Key concepts
|
||||
|
||||
| Concept | What it means |
|
||||
|---------|---------------|
|
||||
| `s6-svscan` | PID 1 — root of the supervision tree |
|
||||
| `s6-supervise` | Monitors one service directory, restarts on crash |
|
||||
| `s6-svc` | Control tool — send commands to services |
|
||||
| `s6-rc` | Dependency-based service manager (compiled database) |
|
||||
| `s6-log` | Built-in logging with auto-rotation |
|
||||
| Service directories | Like runit — each service is a directory with a `run` script |
|
||||
| Compilation | `s6-rc` compiles service definitions into a binary database |
|
||||
|
||||
## Basic commands
|
||||
|
||||
```bash
|
||||
# Start a service
|
||||
s6-svc -u /run/service/sshd
|
||||
|
||||
# Stop a service
|
||||
s6-svc -d /run/service/sshd
|
||||
|
||||
# Restart a service
|
||||
s6-svc -r /run/service/sshd
|
||||
|
||||
# Check status
|
||||
s6-svc -a /run/service/sshd
|
||||
|
||||
# With s6-rc (service manager):
|
||||
s6-rc -d change sshd # start
|
||||
s6-rc -d stop sshd # stop
|
||||
s6-rc -d status sshd # status
|
||||
```
|
||||
|
||||
## Example service
|
||||
|
||||
`/etc/s6/sv/sshd/run`:
|
||||
```bash
|
||||
#!/bin/sh
|
||||
exec /usr/bin/sshd -D
|
||||
```
|
||||
|
||||
With s6-rc, you also need a service definition file:
|
||||
|
||||
`/etc/s6/rc/sources/sshd/type`:
|
||||
```
|
||||
oneshot
|
||||
```
|
||||
|
||||
`/etc/s6/rc/sources/sshd/up`:
|
||||
```bash
|
||||
#!/bin/sh
|
||||
s6-svc -u /run/service/sshd
|
||||
```
|
||||
|
||||
## Comparison with OpenRC
|
||||
|
||||
| | OpenRC | S6 |
|
||||
|---|--------|-----|
|
||||
| Service format | Shell scripts | `run` scripts + s6-rc definitions |
|
||||
| Dependencies | Manual (`need`/`use`) | Automatic via s6-rc |
|
||||
| Supervision | No built-in | Yes — full supervision tree |
|
||||
| Logging | syslog or separate | Built-in per-service (`s6-log`) |
|
||||
| Boot speed | Fast | Very fast |
|
||||
| Complexity | Low | Medium-High |
|
||||
| Flexibility | Moderate | Very high (modular) |
|
||||
|
||||
## Should you use it?
|
||||
|
||||
Pick S6 if:
|
||||
- You want the most powerful non-systemd init
|
||||
- You need dependency-based service management
|
||||
- You like the idea of a compiled service database
|
||||
- You value process supervision and auto-restart
|
||||
- You're comfortable with a steeper learning curve
|
||||
|
||||
Stick with OpenRC if:
|
||||
- You want something simple and well-documented
|
||||
- You need shell-script-based services you can debug easily
|
||||
- You don't need process supervision or dependency resolution
|
||||
|
||||
## Learn more
|
||||
|
||||
- [S6 official site](https://skarnet.org/software/s6/)
|
||||
- [S6 overview](https://skarnet.org/software/s6/overview.html)
|
||||
- [s6-linux-init](https://skarnet.org/software/s6-linux-init/)
|
||||
- [Artix S6 page](https://wiki.artixlinux.org/Main/S6)
|
||||
- [S6 on Gentoo Wiki](https://wiki.gentoo.org/wiki/S6)
|
||||
@@ -1,46 +0,0 @@
|
||||
---
|
||||
title: Wallpapers
|
||||
layout: default
|
||||
nav_order: 9
|
||||
---
|
||||
|
||||
# Wallpapers
|
||||
|
||||
The `antergos-wallpapers` package provides default wallpapers for the live session and installed system.
|
||||
|
||||
## Current wallpaper
|
||||
|
||||
GNOME **Adwaita Morning** (`adwaita-morning.webp`) — 7680×4320, CC BY-SA 3.0 by Jakub Steiner / GNOME Project.
|
||||
|
||||
## Installation paths
|
||||
|
||||
| Path | Purpose |
|
||||
|------|---------|
|
||||
| `/usr/share/wallpapers/antergos-wallpaper/` | KDE wallpaper picker (requires `metadata.desktop`) |
|
||||
| `/usr/share/backgrounds/antergos/` | Other DEs / fallback |
|
||||
|
||||
## How it appears in KDE
|
||||
|
||||
KDE's wallpaper picker scans `/usr/share/wallpapers/` for directories containing a `metadata.desktop` file. The `metadata.desktop` format:
|
||||
|
||||
```ini
|
||||
[Wallpaper]
|
||||
name=Antergos NeXT
|
||||
filename=adwaita-morning.webp
|
||||
```
|
||||
|
||||
## Set on first login
|
||||
|
||||
Since Plasma overwrites `/etc/skel/.config/plasma-org.kde.plasma.desktop-appletsrc` on first login, the wallpaper is applied via a one-shot autostart script:
|
||||
|
||||
1. `/usr/local/bin/set-antergos-wallpaper.sh` — runs `plasma-apply-wallpaperimage`, creates marker file `~/.config/antergos-wallpaper-set`
|
||||
2. `~/.config/autostart/antergos-wallpaper.desktop` — calls the script with `X-KDE-autostart-phase=2`
|
||||
|
||||
The marker file prevents the script from running on subsequent logins.
|
||||
|
||||
## Customizing
|
||||
|
||||
To replace the wallpaper, update:
|
||||
- `packages/antergos-wallpapers/PKGBUILD` (source + checksum)
|
||||
- `packages/antergos-wallpapers/adwaita-morning.webp`
|
||||
- `packages/antergos-wallpapers/metadata.desktop` (if changing name)
|
||||
-21
@@ -1,21 +0,0 @@
|
||||
---
|
||||
efiBootLoader: "grub"
|
||||
|
||||
kernel: "/vmlinuz-linux-x86_64"
|
||||
img: "/initramfs-linux-x86_64.img"
|
||||
fallback: "/initramfs-linux-x86_64-fallback.img"
|
||||
timeout: "10"
|
||||
|
||||
grubInstall: "grub-install"
|
||||
grubMkconfig: "grub-mkconfig"
|
||||
grubCfg: "/boot/grub/grub.cfg"
|
||||
grubProbe: "grub-probe"
|
||||
efiBootMgr: "efibootmgr"
|
||||
|
||||
installEFIFallback: true
|
||||
|
||||
efiBootloaderId: "Antergos"
|
||||
|
||||
# installHybridGRUB: false
|
||||
|
||||
# efiBootLoaderVar: "packagechooser_bootloader"
|
||||
-10
@@ -1,10 +0,0 @@
|
||||
---
|
||||
displaymanagers:
|
||||
- lightdm
|
||||
- gdm
|
||||
- mdm
|
||||
- sddm
|
||||
- lxdm
|
||||
- slim
|
||||
|
||||
basicSetup: false
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
restartNowMode: user-unchecked
|
||||
|
||||
restartNowCommand: "loginctl reboot"
|
||||
|
||||
notifyOnFinished: false
|
||||
@@ -1,51 +0,0 @@
|
||||
# SPDX-FileCopyrightText: no
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
#
|
||||
# Create, overwrite or update /etc/default/grub in the target system.
|
||||
#
|
||||
# Write lines to /etc/default/grub (in the target system) based
|
||||
# on calculated values and the values set in the *defaults* key
|
||||
# in this configuration file.
|
||||
#
|
||||
# Calculated values are:
|
||||
# - GRUB_DISTRIBUTOR, branding module, *bootloaderEntryName* (this
|
||||
# string is sanitized, and see also setting *keep_distributor*)
|
||||
# - GRUB_ENABLE_CRYPTODISK, based on the presence of filesystems
|
||||
# that use LUKS
|
||||
# - GRUB_CMDLINE_LINUX_DEFAULT, adding LUKS setup and plymouth
|
||||
# support to the kernel.
|
||||
|
||||
---
|
||||
# If set to true, always creates /etc/default/grub from scratch even if the file
|
||||
# already existed. If set to false, edits the existing file instead.
|
||||
overwrite: false
|
||||
|
||||
# If set to true, prefer to write files in /etc/default/grub.d/
|
||||
# rather than the single file /etc/default/grub. If this is set,
|
||||
# Calamares will write /etc/default/grub.d/00Calamares instead.
|
||||
prefer_grub_d: false
|
||||
|
||||
# If set to true, an **existing** setting for GRUB_DISTRIBUTOR is
|
||||
# kept, not updated to the *bootloaderEntryName* from the branding file.
|
||||
# Use this if the GRUB_DISTRIBUTOR setting in the file is "smart" in
|
||||
# some way (e.g. uses shell-command substitution).
|
||||
keep_distributor: false
|
||||
|
||||
# The default kernel params that should always be applied.
|
||||
# This is an array of strings. If it is unset, the default is
|
||||
# `["quiet"]`. To avoid the default, explicitly set this key
|
||||
# to an empty list, `[]`.
|
||||
kernel_params: [ "quiet" ]
|
||||
|
||||
# Default entries to write to /etc/default/grub if it does not exist yet or if
|
||||
# we are overwriting it.
|
||||
#
|
||||
defaults:
|
||||
GRUB_TIMEOUT: 5
|
||||
GRUB_DEFAULT: "saved"
|
||||
GRUB_DISABLE_SUBMENU: true
|
||||
GRUB_TERMINAL_OUTPUT: "console"
|
||||
GRUB_DISABLE_RECOVERY: true
|
||||
|
||||
# Set to true to force defaults to be used even when not overwriting
|
||||
always_use_defaults: false
|
||||
@@ -1,4 +0,0 @@
|
||||
---
|
||||
kernel: all
|
||||
|
||||
be_unsafe: false
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
localeGenPath: /etc/locale.gen
|
||||
|
||||
geoip:
|
||||
style: "json"
|
||||
url: "https://geoip.kde.org/v1/calamares"
|
||||
selector: ""
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
---
|
||||
systemd: false
|
||||
dbus: false
|
||||
dbus-symlink: false
|
||||
entropy-copy: false
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
---
|
||||
qmlSearch: branding
|
||||
qmlFilename: minimal-info.qml
|
||||
qmlLabel:
|
||||
minimal-info: "About This Edition"
|
||||
@@ -1,131 +0,0 @@
|
||||
# SPDX-FileCopyrightText: no
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
#
|
||||
# Mount filesystems in the target (generally, before treating the
|
||||
# target as a usable chroot / "live" system). Filesystems are
|
||||
# automatically mounted from the partitioning module. Filesystems
|
||||
# listed here are **extra**. The filesystems listed in *extraMounts*
|
||||
# are mounted in all target systems.
|
||||
---
|
||||
# Extra filesystems to mount. The key's value is a list of entries; each
|
||||
# entry has five keys:
|
||||
# - device The device node to mount
|
||||
# - fs (optional) The filesystem type to use
|
||||
# - mountPoint Where to mount the filesystem
|
||||
# - options (optional) An array of options to pass to mount
|
||||
# - efi (optional) A boolean that when true is only mounted for UEFI installs
|
||||
#
|
||||
# The device is not mounted if the mountPoint is unset or if the fs is
|
||||
# set to unformatted.
|
||||
#
|
||||
extraMounts:
|
||||
- device: proc
|
||||
fs: proc
|
||||
mountPoint: /proc
|
||||
- device: sys
|
||||
fs: sysfs
|
||||
mountPoint: /sys
|
||||
- device: /dev
|
||||
mountPoint: /dev
|
||||
options: [ bind ]
|
||||
- device: tmpfs
|
||||
fs: tmpfs
|
||||
mountPoint: /run
|
||||
- device: /run/udev
|
||||
mountPoint: /run/udev
|
||||
options: [ bind ]
|
||||
- device: efivarfs
|
||||
fs: efivarfs
|
||||
mountPoint: /sys/firmware/efi/efivars
|
||||
efi: true
|
||||
|
||||
# Btrfs subvolumes to create if root filesystem is on btrfs volume.
|
||||
# If *mountpoint* is mounted already to another partition, it is ignored.
|
||||
# Separate subvolume for swapfile is handled separately and automatically.
|
||||
#
|
||||
# It is possible to prevent subvolume creation -- this is likely only relevant
|
||||
# for the root (/) subvolume -- by giving an empty string as a subvolume
|
||||
# name. In this case no subvolume will be created.
|
||||
#
|
||||
btrfsSubvolumes:
|
||||
- mountPoint: /
|
||||
subvolume: /@
|
||||
# As an alternative:
|
||||
#
|
||||
# subvolume: ""
|
||||
- mountPoint: /home
|
||||
subvolume: /@home
|
||||
- mountPoint: /root
|
||||
subvolume: /@root
|
||||
- mountPoint: /srv
|
||||
subvolume: /@srv
|
||||
- mountPoint: /var/cache
|
||||
subvolume: /@cache
|
||||
- mountPoint: /var/log
|
||||
subvolume: /@log
|
||||
- mountPoint: /var/tmp
|
||||
subvolume: /@tmp
|
||||
|
||||
# The name of the btrfs subvolume holding the swapfile. This only used when
|
||||
# a swapfile is selected and the root filesystem is btrfs
|
||||
#
|
||||
btrfsSwapSubvol: /@swap
|
||||
|
||||
# The mount options used to mount each filesystem.
|
||||
#
|
||||
# filesystem contains the name of the filesystem or on of three special
|
||||
# values, "default", efi" and "btrfs_swap". The logic is applied in this manner:
|
||||
# - If the partition is the EFI partition, the "efi" entry will be used
|
||||
# - If the fs is btrfs and the subvolume is for the swapfile,
|
||||
# the "btrfs_swap" entry is used
|
||||
# - If the filesystem is an exact match for filesystem, that entry is used
|
||||
# - If no match is found in the above, the default entry is used
|
||||
# - If there is no match and no default entry, "defaults" is used
|
||||
# - If the mountOptions key is not present, "defaults" is used
|
||||
#
|
||||
# Each filesystem entry contains 3 keys, all of which are optional
|
||||
# options - An array of mount options that is used on all disk types
|
||||
# ssdOptions - An array of mount options combined with options for ssds
|
||||
# hddOptions - An array of mount options combined with options for hdds
|
||||
# If combining these options results in an empty array, "defaults" is used
|
||||
#
|
||||
# Example 1
|
||||
# In this example, there are specific options for ext4 and btrfs filesystems,
|
||||
# the EFI partition and the subvolume holding the btrfs swapfile. All other
|
||||
# filesystems use the default entry. For the btrfs filesystem, there are
|
||||
# additional options specific to hdds and ssds
|
||||
#
|
||||
mountOptions:
|
||||
- filesystem: default
|
||||
options: [ defaults ]
|
||||
- filesystem: efi
|
||||
options: [ defaults, umask=0077 ]
|
||||
- filesystem: ext4
|
||||
options: [ defaults ]
|
||||
- filesystem: btrfs
|
||||
options: [ defaults, noatime, compress=zstd:1 ]
|
||||
ssdOptions: [ discard=async ]
|
||||
hddOptions: [ autodefrag ]
|
||||
- filesystem: btrfs_swap
|
||||
options: [ defaults, noatime ]
|
||||
#
|
||||
# Example 2
|
||||
# In this example there is a single default used by all filesystems
|
||||
#
|
||||
# mountOptions:
|
||||
# - filesystem: default
|
||||
# options: [ defaults ]
|
||||
#
|
||||
# mountOptions:
|
||||
# - filesystem: default
|
||||
# options: [ defaults ]
|
||||
# - filesystem: efi
|
||||
# options: [ defaults, umask=0077 ]
|
||||
# - filesystem: btrfs
|
||||
# options: [ defaults, compress=zstd:1 ]
|
||||
# - filesystem: btrfs_swap
|
||||
# options: [ defaults, noatime ]
|
||||
|
||||
|
||||
|
||||
|
||||
-32
@@ -1,32 +0,0 @@
|
||||
efi:
|
||||
mountPoint: "/boot/efi"
|
||||
recommendedSize: 512MiB
|
||||
minimumSize: 256MiB
|
||||
label: "EFI"
|
||||
|
||||
userSwapChoices:
|
||||
- none # Create no swap, use no swap
|
||||
- small # Up to 4GB
|
||||
- suspend # At least main memory size
|
||||
- file # To swap file instead of partition
|
||||
|
||||
swapPartitionName: swap
|
||||
|
||||
luksGeneration: luks1
|
||||
|
||||
drawNestedPartitions: true
|
||||
|
||||
alwaysShowPartitionLabels: true
|
||||
|
||||
initialPartitioningChoice: none
|
||||
|
||||
initialSwapChoice: suspend
|
||||
|
||||
defaultPartitionTableType: msdos
|
||||
|
||||
requiredPartitionTableType:
|
||||
- msdos
|
||||
- gpt
|
||||
|
||||
defaultFileSystemType: "ext4"
|
||||
availableFileSystemTypes: ["ext4","btrfs","f2fs","xfs"]
|
||||
@@ -1,13 +0,0 @@
|
||||
---
|
||||
# set at iso build time
|
||||
initsys: none
|
||||
|
||||
user-services:
|
||||
- name: dbus
|
||||
action: enable
|
||||
- name: pipewire
|
||||
action: enable
|
||||
- name: pipewire-pulse
|
||||
action: enable
|
||||
- name: wireplumber
|
||||
action: enable
|
||||
-24
@@ -1,24 +0,0 @@
|
||||
---
|
||||
command: artix-service
|
||||
|
||||
services:
|
||||
- name: "acpid"
|
||||
action: "enable"
|
||||
- name: "bluetoothd"
|
||||
action: "enable"
|
||||
- name: "cronie"
|
||||
action: "enable"
|
||||
- name: "cupsd"
|
||||
action: "enable"
|
||||
- name: "dbus"
|
||||
action: "enable"
|
||||
- name: "dhcpcd"
|
||||
action: "enable"
|
||||
- name: "NetworkManager"
|
||||
action: "enable"
|
||||
- name: "power-profiles-daemon"
|
||||
action: "enable"
|
||||
- name: "sddm"
|
||||
action: "enable"
|
||||
- name: "syslog-ng"
|
||||
action: "enable"
|
||||
@@ -1,2 +0,0 @@
|
||||
---
|
||||
emergency: false
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
unpack:
|
||||
- source: "/run/artix/bootmnt/LiveOS/rootfs.img"
|
||||
sourcefs: 'squashfs'
|
||||
destination: ""
|
||||
@@ -1,49 +0,0 @@
|
||||
---
|
||||
defaultGroups:
|
||||
- name: users
|
||||
must_exist: true
|
||||
system: true
|
||||
- lp
|
||||
- video
|
||||
- network
|
||||
- storage
|
||||
- name: wheel
|
||||
must_exist: false
|
||||
system: true
|
||||
- audio
|
||||
- power
|
||||
- log
|
||||
- optical
|
||||
- network
|
||||
- scanner
|
||||
|
||||
autologinGroup: autologin
|
||||
|
||||
doAutologin: false
|
||||
|
||||
sudoersGroup: wheel
|
||||
|
||||
setRootPassword: true
|
||||
|
||||
doReusePassword: false
|
||||
|
||||
passwordRequirements:
|
||||
nonempty: true
|
||||
minLength: 4 # Password at least this many characters
|
||||
maxLength: -1 # Password at most this many characters
|
||||
libpwquality:
|
||||
- minlen=4
|
||||
- minclass=0
|
||||
|
||||
allowWeakPasswords: true
|
||||
allowWeakPasswordsDefault: true
|
||||
|
||||
userShell: /bin/bash
|
||||
|
||||
setHostname: EtcFile
|
||||
|
||||
writeHostsFile: true
|
||||
|
||||
user:
|
||||
shell: /bin/bash
|
||||
forbidden_names: [ root ]
|
||||
@@ -1,19 +0,0 @@
|
||||
---
|
||||
showSupportUrl: true
|
||||
showKnownIssuesUrl: true
|
||||
showReleaseNotesUrl: true
|
||||
|
||||
requirements:
|
||||
requiredStorage: 5.5
|
||||
requiredRam: 1.0
|
||||
internetCheckUrl: https://www.artixlinux.org
|
||||
check:
|
||||
- storage
|
||||
- ram
|
||||
- power
|
||||
- internet
|
||||
- root
|
||||
required:
|
||||
- storage
|
||||
- ram
|
||||
- root
|
||||
@@ -1,51 +0,0 @@
|
||||
---
|
||||
modules-search: [ local ]
|
||||
|
||||
sequence:
|
||||
- show:
|
||||
- welcome
|
||||
- locale
|
||||
- keyboard
|
||||
- partition
|
||||
- users
|
||||
- summary
|
||||
- exec:
|
||||
- partition
|
||||
- mount
|
||||
- unpackfs
|
||||
- machineid
|
||||
- fstab
|
||||
- locale
|
||||
- keyboard
|
||||
- localecfg
|
||||
- luksopenswaphookcfg
|
||||
- luksbootkeyfile
|
||||
- initcpiocfg
|
||||
- initcpio
|
||||
- users
|
||||
- displaymanager
|
||||
- networkcfg
|
||||
- hwclock
|
||||
- services-artix
|
||||
- grubcfg
|
||||
- bootloader
|
||||
- postcfg
|
||||
- umount
|
||||
- show:
|
||||
- finished
|
||||
|
||||
branding: antergos-next-minimal
|
||||
|
||||
prompt-install: false
|
||||
|
||||
dont-chroot: false
|
||||
|
||||
oem-setup: false
|
||||
|
||||
disable-cancel: false
|
||||
|
||||
disable-cancel-during-exec: false
|
||||
|
||||
hide-back-and-next-during-exec: false
|
||||
|
||||
quit-at-end: false
|
||||
-37
@@ -1,37 +0,0 @@
|
||||
---
|
||||
backend: pacman
|
||||
|
||||
pacman:
|
||||
num_retries: 0
|
||||
disable_download_timeout: false
|
||||
needed_only: false
|
||||
handle_keyrings: true
|
||||
copy_pacconf: true
|
||||
requirements:
|
||||
- dest: /etc
|
||||
mode: "0o755"
|
||||
- dest: /var
|
||||
mode: "0o755"
|
||||
- dest: /var/cache
|
||||
mode: "0o755"
|
||||
- dest: /var/cache/pacman
|
||||
mode: "0o755"
|
||||
- dest: /var/cache/pacman/pkg
|
||||
mode: "0o755"
|
||||
- dest: /var/lib
|
||||
mode: "0o755"
|
||||
- dest: /var/lib/pacman
|
||||
mode: "0o755"
|
||||
keyrings:
|
||||
- artix
|
||||
- antergos-next
|
||||
|
||||
base_init: elogind
|
||||
|
||||
operations:
|
||||
- install:
|
||||
- base
|
||||
- antergos-next-keyring
|
||||
- antergos-release
|
||||
- antergos-grub-theme
|
||||
- xlibre-xserver
|
||||
-21
@@ -1,21 +0,0 @@
|
||||
---
|
||||
efiBootLoader: "grub"
|
||||
|
||||
kernel: "/vmlinuz-linux-x86_64"
|
||||
img: "/initramfs-linux-x86_64.img"
|
||||
fallback: "/initramfs-linux-x86_64-fallback.img"
|
||||
timeout: "10"
|
||||
|
||||
grubInstall: "grub-install"
|
||||
grubMkconfig: "grub-mkconfig"
|
||||
grubCfg: "/boot/grub/grub.cfg"
|
||||
grubProbe: "grub-probe"
|
||||
efiBootMgr: "efibootmgr"
|
||||
|
||||
installEFIFallback: true
|
||||
|
||||
efiBootloaderId: "Antergos"
|
||||
|
||||
# installHybridGRUB: false
|
||||
|
||||
# efiBootLoaderVar: "packagechooser_bootloader"
|
||||
-10
@@ -1,10 +0,0 @@
|
||||
---
|
||||
displaymanagers:
|
||||
- lightdm
|
||||
- gdm
|
||||
- mdm
|
||||
- sddm
|
||||
- lxdm
|
||||
- slim
|
||||
|
||||
basicSetup: false
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
restartNowMode: user-unchecked
|
||||
|
||||
restartNowCommand: "loginctl reboot"
|
||||
|
||||
notifyOnFinished: false
|
||||
@@ -1,21 +0,0 @@
|
||||
# SPDX-FileCopyrightText: no
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
---
|
||||
# Create /etc/default/grub from scratch.
|
||||
overwrite: true
|
||||
|
||||
prefer_grub_d: false
|
||||
|
||||
keep_distributor: false
|
||||
|
||||
kernel_params: [ "quiet", "splash" ]
|
||||
|
||||
defaults:
|
||||
GRUB_TIMEOUT: 5
|
||||
GRUB_DEFAULT: "saved"
|
||||
GRUB_DISABLE_SUBMENU: true
|
||||
GRUB_TERMINAL_OUTPUT: "console"
|
||||
GRUB_DISABLE_RECOVERY: true
|
||||
GRUB_THEME: "/usr/share/grub/themes/antergos/theme.txt"
|
||||
|
||||
always_use_defaults: false
|
||||
@@ -1,4 +0,0 @@
|
||||
---
|
||||
kernel: all
|
||||
|
||||
be_unsafe: false
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
localeGenPath: /etc/locale.gen
|
||||
|
||||
geoip:
|
||||
style: "json"
|
||||
url: "https://geoip.kde.org/v1/calamares"
|
||||
selector: ""
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
systemd: false
|
||||
dbus: false
|
||||
dbus-symlink: false
|
||||
entropy-copy: false
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
---
|
||||
qmlSearch: branding
|
||||
qmlFilename: minimal-info.qml
|
||||
qmlLabel:
|
||||
minimal-info: "About This Edition"
|
||||
@@ -1,131 +0,0 @@
|
||||
# SPDX-FileCopyrightText: no
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
#
|
||||
# Mount filesystems in the target (generally, before treating the
|
||||
# target as a usable chroot / "live" system). Filesystems are
|
||||
# automatically mounted from the partitioning module. Filesystems
|
||||
# listed here are **extra**. The filesystems listed in *extraMounts*
|
||||
# are mounted in all target systems.
|
||||
---
|
||||
# Extra filesystems to mount. The key's value is a list of entries; each
|
||||
# entry has five keys:
|
||||
# - device The device node to mount
|
||||
# - fs (optional) The filesystem type to use
|
||||
# - mountPoint Where to mount the filesystem
|
||||
# - options (optional) An array of options to pass to mount
|
||||
# - efi (optional) A boolean that when true is only mounted for UEFI installs
|
||||
#
|
||||
# The device is not mounted if the mountPoint is unset or if the fs is
|
||||
# set to unformatted.
|
||||
#
|
||||
extraMounts:
|
||||
- device: proc
|
||||
fs: proc
|
||||
mountPoint: /proc
|
||||
- device: sys
|
||||
fs: sysfs
|
||||
mountPoint: /sys
|
||||
- device: /dev
|
||||
mountPoint: /dev
|
||||
options: [ bind ]
|
||||
- device: tmpfs
|
||||
fs: tmpfs
|
||||
mountPoint: /run
|
||||
- device: /run/udev
|
||||
mountPoint: /run/udev
|
||||
options: [ bind ]
|
||||
- device: efivarfs
|
||||
fs: efivarfs
|
||||
mountPoint: /sys/firmware/efi/efivars
|
||||
efi: true
|
||||
|
||||
# Btrfs subvolumes to create if root filesystem is on btrfs volume.
|
||||
# If *mountpoint* is mounted already to another partition, it is ignored.
|
||||
# Separate subvolume for swapfile is handled separately and automatically.
|
||||
#
|
||||
# It is possible to prevent subvolume creation -- this is likely only relevant
|
||||
# for the root (/) subvolume -- by giving an empty string as a subvolume
|
||||
# name. In this case no subvolume will be created.
|
||||
#
|
||||
btrfsSubvolumes:
|
||||
- mountPoint: /
|
||||
subvolume: /@
|
||||
# As an alternative:
|
||||
#
|
||||
# subvolume: ""
|
||||
- mountPoint: /home
|
||||
subvolume: /@home
|
||||
- mountPoint: /root
|
||||
subvolume: /@root
|
||||
- mountPoint: /srv
|
||||
subvolume: /@srv
|
||||
- mountPoint: /var/cache
|
||||
subvolume: /@cache
|
||||
- mountPoint: /var/log
|
||||
subvolume: /@log
|
||||
- mountPoint: /var/tmp
|
||||
subvolume: /@tmp
|
||||
|
||||
# The name of the btrfs subvolume holding the swapfile. This only used when
|
||||
# a swapfile is selected and the root filesystem is btrfs
|
||||
#
|
||||
btrfsSwapSubvol: /@swap
|
||||
|
||||
# The mount options used to mount each filesystem.
|
||||
#
|
||||
# filesystem contains the name of the filesystem or on of three special
|
||||
# values, "default", efi" and "btrfs_swap". The logic is applied in this manner:
|
||||
# - If the partition is the EFI partition, the "efi" entry will be used
|
||||
# - If the fs is btrfs and the subvolume is for the swapfile,
|
||||
# the "btrfs_swap" entry is used
|
||||
# - If the filesystem is an exact match for filesystem, that entry is used
|
||||
# - If no match is found in the above, the default entry is used
|
||||
# - If there is no match and no default entry, "defaults" is used
|
||||
# - If the mountOptions key is not present, "defaults" is used
|
||||
#
|
||||
# Each filesystem entry contains 3 keys, all of which are optional
|
||||
# options - An array of mount options that is used on all disk types
|
||||
# ssdOptions - An array of mount options combined with options for ssds
|
||||
# hddOptions - An array of mount options combined with options for hdds
|
||||
# If combining these options results in an empty array, "defaults" is used
|
||||
#
|
||||
# Example 1
|
||||
# In this example, there are specific options for ext4 and btrfs filesystems,
|
||||
# the EFI partition and the subvolume holding the btrfs swapfile. All other
|
||||
# filesystems use the default entry. For the btrfs filesystem, there are
|
||||
# additional options specific to hdds and ssds
|
||||
#
|
||||
mountOptions:
|
||||
- filesystem: default
|
||||
options: [ defaults ]
|
||||
- filesystem: efi
|
||||
options: [ defaults, umask=0077 ]
|
||||
- filesystem: ext4
|
||||
options: [ defaults ]
|
||||
- filesystem: btrfs
|
||||
options: [ defaults, noatime, compress=zstd:1 ]
|
||||
ssdOptions: [ discard=async ]
|
||||
hddOptions: [ autodefrag ]
|
||||
- filesystem: btrfs_swap
|
||||
options: [ defaults, noatime ]
|
||||
#
|
||||
# Example 2
|
||||
# In this example there is a single default used by all filesystems
|
||||
#
|
||||
# mountOptions:
|
||||
# - filesystem: default
|
||||
# options: [ defaults ]
|
||||
#
|
||||
# mountOptions:
|
||||
# - filesystem: default
|
||||
# options: [ defaults ]
|
||||
# - filesystem: efi
|
||||
# options: [ defaults, umask=0077 ]
|
||||
# - filesystem: btrfs
|
||||
# options: [ defaults, compress=zstd:1 ]
|
||||
# - filesystem: btrfs_swap
|
||||
# options: [ defaults, noatime ]
|
||||
|
||||
|
||||
|
||||
|
||||
-54
@@ -1,54 +0,0 @@
|
||||
---
|
||||
groupsUrl:
|
||||
- file:///etc/calamares/modules/netinstall.yaml
|
||||
|
||||
required: false
|
||||
|
||||
# To support multiple instances of this module,
|
||||
# some strings are configurable and translatable here.
|
||||
# Sub-keys under *label* are used for the user interface.
|
||||
# - *sidebar* This is the name of the module in the progress-tree / sidebar
|
||||
# in Calamares.
|
||||
# - *title* This is displayed above the list of packages.
|
||||
# If no *sidebar* values are provided, defaults to "Package selection"
|
||||
# and existing translations. If no *title* values are provided, no string
|
||||
# is displayed.
|
||||
#
|
||||
# Translations are handled through `[ll]` notation, much like in
|
||||
# `.desktop` files. The string associated with `key[ll]` is used for
|
||||
# *key* when when the language *ll* (language-code, like *nl* or *en_GB*
|
||||
# or *ja*) is used.
|
||||
#
|
||||
# The following strings are **already** known to Calamares and can be
|
||||
# listed here in *untranslated* form (e.g. as value of *sidebar*)
|
||||
# without bothering with the translations: they are picked up from
|
||||
# the regular translation framework:
|
||||
# - "Package selection"
|
||||
# - "Office software"
|
||||
# - "Office package"
|
||||
# - "Browser software"
|
||||
# - "Browser package"
|
||||
# - "Web browser"
|
||||
# - "Kernel"
|
||||
# - "Services"
|
||||
# - "Login"
|
||||
# - "Desktop"
|
||||
# - "Applications"
|
||||
# - "Communication"
|
||||
# - "Development"
|
||||
# - "Office"
|
||||
# - "Multimedia"
|
||||
# - "Internet"
|
||||
# - "Theming"
|
||||
# - "Gaming"
|
||||
# - "Utilities"
|
||||
# Other strings should follow the translations format.
|
||||
label:
|
||||
sidebar: "Package selection"
|
||||
# sidebar[nl]: "Pakketkeuze"
|
||||
# sidebar[en_GB]: "Package choice"
|
||||
# sidebar[ja]: "知りません" # "I don't know"
|
||||
# title: "Office Package"
|
||||
# title[nl]: "Kantoorsoftware"
|
||||
|
||||
|
||||
-141
@@ -1,141 +0,0 @@
|
||||
- name: "Default"
|
||||
description: "Default packages"
|
||||
hidden: false
|
||||
selected: true
|
||||
critical: true
|
||||
immutable: true
|
||||
packages:
|
||||
- linux
|
||||
- linux-headers
|
||||
- grub
|
||||
- efibootmgr
|
||||
- sudo
|
||||
- antergos-release
|
||||
- antergos-next-keyring
|
||||
- antergos-wallpapers
|
||||
- antergos-grub-theme
|
||||
|
||||
- name: "Kernel"
|
||||
description: "Kernel and modules"
|
||||
selected: false
|
||||
packages:
|
||||
- acpi_call
|
||||
- bbswitch
|
||||
- broadcom-wl
|
||||
- tp_smapi
|
||||
- linux-lts
|
||||
- linux-lts-headers
|
||||
|
||||
- name: "Firmware"
|
||||
description: "Firmware"
|
||||
selected: false
|
||||
packages:
|
||||
- b43-fwcutter
|
||||
- linux-firmware
|
||||
- linux-firmware-bnx2x
|
||||
- linux-firmware-liquidio
|
||||
- linux-firmware-marvell
|
||||
- linux-firmware-mellanox
|
||||
- linux-firmware-nfp
|
||||
- linux-firmware-qcom
|
||||
- linux-firmware-qlogic
|
||||
- linux-firmware-whence
|
||||
- sof-firmware
|
||||
- alsa-firmware
|
||||
- intel-ucode
|
||||
- amd-ucode
|
||||
|
||||
- name: "Utilities"
|
||||
description: "System Utilities"
|
||||
selected: true
|
||||
packages:
|
||||
- antergos-lsb-release
|
||||
- nano
|
||||
- vi
|
||||
|
||||
- name: "Devel"
|
||||
description: "Development tools"
|
||||
selected: false
|
||||
packages:
|
||||
- base-devel
|
||||
- artools-base
|
||||
- artools-iso
|
||||
- artools-pkg
|
||||
|
||||
- name: "Style"
|
||||
description: "Antergos themes, icons, branding"
|
||||
selected: false
|
||||
packages: []
|
||||
|
||||
- name: "Desktop"
|
||||
description: "DE"
|
||||
selected: true
|
||||
critical: false
|
||||
subgroups:
|
||||
- name: "Plasma"
|
||||
description: "KDE Plasma Desktop"
|
||||
selected: true
|
||||
packages:
|
||||
- plasma
|
||||
- ark
|
||||
- dolphin
|
||||
- ffmpegthumbs
|
||||
- gwenview
|
||||
- kate
|
||||
- keditbookmarks
|
||||
- kfind
|
||||
- kgpg
|
||||
- kio-admin
|
||||
- konsole
|
||||
- konversation
|
||||
- kwalletmanager
|
||||
- okular
|
||||
- partitionmanager
|
||||
- name: "Xfce"
|
||||
description: "Xfce Desktop"
|
||||
selected: false
|
||||
packages:
|
||||
- xfce4
|
||||
- xfce4-goodies
|
||||
- name: "Cinnamon"
|
||||
description: "Cinnamon Desktop"
|
||||
selected: false
|
||||
packages:
|
||||
- cinnamon
|
||||
- cinnamon-control-center
|
||||
- cinnamon-desktop
|
||||
- cinnamon-menus
|
||||
- cinnamon-screensaver
|
||||
- cinnamon-session
|
||||
- cinnamon-settings-daemon
|
||||
- cinnamon-translations
|
||||
- name: "MATE"
|
||||
description: "MATE Desktop"
|
||||
selected: false
|
||||
packages:
|
||||
- mate
|
||||
- mate-extra
|
||||
- name: "LXQt"
|
||||
description: "LXQt Desktop"
|
||||
selected: false
|
||||
packages:
|
||||
- lxqt
|
||||
- name: "i3"
|
||||
description: "i3 Tiling WM"
|
||||
selected: false
|
||||
packages:
|
||||
- i3
|
||||
- name: "Sway"
|
||||
description: "Sway Wayland Compositor"
|
||||
selected: false
|
||||
packages:
|
||||
- sway
|
||||
- swaybg
|
||||
- swayidle
|
||||
- swaylock
|
||||
- name: "Hyprland"
|
||||
description: "Hyprland Wayland Compositor"
|
||||
selected: false
|
||||
packages:
|
||||
- hyprland
|
||||
- xdg-desktop-portal-hyprland
|
||||
-294
@@ -1,294 +0,0 @@
|
||||
---
|
||||
mode: required
|
||||
|
||||
method: netinstall-add
|
||||
|
||||
labels:
|
||||
step: "Init selection"
|
||||
step[de]: "Initauswahl"
|
||||
|
||||
default: Dinit
|
||||
|
||||
items:
|
||||
- id: Dinit
|
||||
name: dinit
|
||||
description: "Dinit init system"
|
||||
screenshot: ""
|
||||
netinstall:
|
||||
name: "dinit"
|
||||
description: "Dinit init system"
|
||||
selected: true
|
||||
critical: true
|
||||
immutable: false
|
||||
expanded: true
|
||||
hidden: false
|
||||
subgroups:
|
||||
- name: "Default"
|
||||
description: "Default services"
|
||||
selected: true
|
||||
hidden: true
|
||||
packages:
|
||||
- audit-dinit
|
||||
- cryptsetup-dinit
|
||||
- dbus-dinit
|
||||
- dhcpcd-dinit
|
||||
- lvm2-dinit
|
||||
- mdadm-dinit
|
||||
- name: "Cron"
|
||||
description: "Cron init"
|
||||
selected: true
|
||||
packages:
|
||||
- cronie-dinit
|
||||
- name: "Syslog"
|
||||
description: "Syslog init"
|
||||
packages:
|
||||
- syslog-ng-dinit
|
||||
- metalog-dinit
|
||||
- name: "Internet"
|
||||
description: "Network init"
|
||||
packages:
|
||||
- avahi-dinit
|
||||
- bluez-dinit
|
||||
- iptables-dinit
|
||||
- krb5-dinit
|
||||
- networkmanager-dinit
|
||||
- nfs-utils-dinit
|
||||
- ntp-dinit
|
||||
- openldap-dinit
|
||||
- openssh-dinit
|
||||
- rpcbind-dinit
|
||||
- xinetd-dinit
|
||||
- wpa_supplicant-dinit
|
||||
- name: "Office"
|
||||
description: "Office init"
|
||||
packages:
|
||||
- cups-dinit
|
||||
- sane-dinit
|
||||
- name: "Services"
|
||||
description: "Services init"
|
||||
packages:
|
||||
- acpid-dinit
|
||||
- alsa-utils-dinit
|
||||
- apparmor-dinit
|
||||
- brltty-dinit
|
||||
- fuse-dinit
|
||||
- gpm-dinit
|
||||
- hdparm-dinit
|
||||
- haveged-dinit
|
||||
- lm_sensors-dinit
|
||||
- openvpn-dinit
|
||||
- power-profiles-daemon-dinit
|
||||
- rsync-dinit
|
||||
|
||||
- id: OpenRC
|
||||
name: openrc
|
||||
description: "⚠ OpenRC init system — BROKEN in Antergos NeXT (init-rc conflict with dinit). Will be re-added once fixed."
|
||||
screenshot: ""
|
||||
netinstall:
|
||||
name: "openrc"
|
||||
description: "OpenRC init system"
|
||||
selected: false
|
||||
critical: false
|
||||
immutable: false
|
||||
expanded: true
|
||||
hidden: false
|
||||
subgroups:
|
||||
- name: "Default"
|
||||
description: "Default services"
|
||||
selected: true
|
||||
hidden: true
|
||||
packages:
|
||||
- audit-openrc
|
||||
- cryptsetup-openrc
|
||||
- dbus-openrc
|
||||
- dhcpcd-openrc
|
||||
- lvm2-openrc
|
||||
- mdadm-openrc
|
||||
- name: "Cron"
|
||||
description: "Cron init"
|
||||
selected: true
|
||||
packages:
|
||||
- cronie-openrc
|
||||
- name: "Syslog"
|
||||
description: "Syslog init"
|
||||
packages:
|
||||
- syslog-ng-openrc
|
||||
- metalog-openrc
|
||||
- name: "Internet"
|
||||
description: "Network init"
|
||||
packages:
|
||||
- avahi-openrc
|
||||
- bluez-openrc
|
||||
- iptables-openrc
|
||||
- krb5-openrc
|
||||
- networkmanager-openrc
|
||||
- nfs-utils-openrc
|
||||
- ntp-openrc
|
||||
- openldap-openrc
|
||||
- openssh-openrc
|
||||
- rpcbind-openrc
|
||||
- xinetd-openrc
|
||||
- wpa_supplicant-openrc
|
||||
- name: "Office"
|
||||
description: "Office init"
|
||||
packages:
|
||||
- cups-openrc
|
||||
- sane-openrc
|
||||
- name: "Services"
|
||||
description: "Services init"
|
||||
packages:
|
||||
- acpid-openrc
|
||||
- alsa-utils-openrc
|
||||
- apparmor-openrc
|
||||
- brltty-openrc
|
||||
- fuse-openrc
|
||||
- gpm-openrc
|
||||
- hdparm-openrc
|
||||
- haveged-openrc
|
||||
- lm_sensors-openrc
|
||||
- openrc-settingsd
|
||||
- openvpn-openrc
|
||||
- power-profiles-daemon-openrc
|
||||
- rsync-openrc
|
||||
|
||||
- id: S6
|
||||
name: s6
|
||||
description: "S6 init system"
|
||||
screenshot: ""
|
||||
netinstall:
|
||||
name: "s6"
|
||||
description: "S6 init system"
|
||||
selected: false
|
||||
critical: true
|
||||
immutable: false
|
||||
expanded: true
|
||||
hidden: false
|
||||
subgroups:
|
||||
- name: "Default"
|
||||
description: "Default services"
|
||||
selected: true
|
||||
hidden: true
|
||||
packages:
|
||||
- audit-s6
|
||||
- cryptsetup-s6
|
||||
- dbus-s6
|
||||
- dhcpcd-s6
|
||||
- lvm2-s6
|
||||
- mdadm-s6
|
||||
- s6-contrib
|
||||
- name: "Cron"
|
||||
description: "Cron init"
|
||||
selected: true
|
||||
packages:
|
||||
- cronie-s6
|
||||
- name: "Syslog"
|
||||
description: "Syslog init"
|
||||
packages:
|
||||
- syslog-ng-s6
|
||||
- metalog-s6
|
||||
- name: "Internet"
|
||||
description: "Network init"
|
||||
packages:
|
||||
- avahi-s6
|
||||
- bluez-s6
|
||||
- iptables-s6
|
||||
- krb5-s6
|
||||
- networkmanager-s6
|
||||
- nfs-utils-s6
|
||||
- ntp-s6
|
||||
- openldap-s6
|
||||
- openssh-s6
|
||||
- rpcbind-s6
|
||||
- xinetd-s6
|
||||
- wpa_supplicant-s6
|
||||
- name: "Office"
|
||||
description: "Office init"
|
||||
packages:
|
||||
- cups-s6
|
||||
- sane-s6
|
||||
- name: "Services"
|
||||
description: "Services init"
|
||||
packages:
|
||||
- acpid-s6
|
||||
- alsa-utils-s6
|
||||
- apparmor-s6
|
||||
- brltty-s6
|
||||
- fuse-s6
|
||||
- gpm-s6
|
||||
- hdparm-s6
|
||||
- haveged-s6
|
||||
- lm_sensors-s6
|
||||
- openvpn-s6
|
||||
- power-profiles-daemon-s6
|
||||
- rsync-s6
|
||||
|
||||
- id: Runit
|
||||
name: runit
|
||||
description: "Runit init system"
|
||||
screenshot: ""
|
||||
netinstall:
|
||||
name: "runit"
|
||||
description: "Runit init system"
|
||||
selected: false
|
||||
critical: true
|
||||
immutable: false
|
||||
expanded: true
|
||||
hidden: false
|
||||
subgroups:
|
||||
- name: "Default"
|
||||
description: "Default services"
|
||||
selected: true
|
||||
hidden: true
|
||||
packages:
|
||||
- audit-runit
|
||||
- cryptsetup-runit
|
||||
- dbus-runit
|
||||
- dhcpcd-runit
|
||||
- lvm2-runit
|
||||
- mdadm-runit
|
||||
- rsm
|
||||
- name: "Cron"
|
||||
description: "Cron init"
|
||||
selected: true
|
||||
packages:
|
||||
- cronie-runit
|
||||
- name: "Syslog"
|
||||
description: "Syslog init"
|
||||
packages:
|
||||
- syslog-ng-runit
|
||||
- metalog-runit
|
||||
- name: "Internet"
|
||||
description: "Network init"
|
||||
packages:
|
||||
- avahi-runit
|
||||
- bluez-runit
|
||||
- iptables-runit
|
||||
- krb5-runit
|
||||
- networkmanager-runit
|
||||
- nfs-utils-runit
|
||||
- ntp-runit
|
||||
- openldap-runit
|
||||
- openssh-runit
|
||||
- rpcbind-runit
|
||||
- xinetd-runit
|
||||
- wpa_supplicant-runit
|
||||
- name: "Office"
|
||||
description: "Office init"
|
||||
packages:
|
||||
- cups-runit
|
||||
- sane-runit
|
||||
- name: "Services"
|
||||
description: "Services init"
|
||||
packages:
|
||||
- acpid-runit
|
||||
- alsa-utils-runit
|
||||
- apparmor-runit
|
||||
- brltty-runit
|
||||
- fuse-runit
|
||||
- gpm-runit
|
||||
- hdparm-runit
|
||||
- haveged-runit
|
||||
- lm_sensors-runit
|
||||
- openvpn-runit
|
||||
- power-profiles-daemon-runit
|
||||
- rsync-runit
|
||||
-31
@@ -1,31 +0,0 @@
|
||||
---
|
||||
mode: required
|
||||
|
||||
method: netinstall-select
|
||||
|
||||
labels:
|
||||
step: "Display Manager"
|
||||
step[de]: "Display Manager"
|
||||
|
||||
default: SDDM
|
||||
|
||||
items:
|
||||
- id: SDDM
|
||||
name: sddm
|
||||
description: "QML-based (KDE default). ⚠ May conflict with Cinnamon/MATE/LXQt (Xorg provider incompatibility). Use LightDM instead if installing those."
|
||||
screenshot: ""
|
||||
|
||||
- id: LightDM
|
||||
name: lightdm
|
||||
description: "Cross-desktop (GTK). Compatible with all desktop environments."
|
||||
screenshot: ""
|
||||
|
||||
- id: LXDM
|
||||
name: lxdm
|
||||
description: "Lightweight (LXDE). Compatible with all desktop environments."
|
||||
screenshot: ""
|
||||
|
||||
- id: LY
|
||||
name: ly
|
||||
description: "Minimal TUI. Compatible with all desktop environments."
|
||||
screenshot: ""
|
||||
@@ -1,11 +0,0 @@
|
||||
---
|
||||
backend: pacman
|
||||
|
||||
skip_if_no_internet: false
|
||||
update_db: true
|
||||
update_system: false
|
||||
|
||||
pacman:
|
||||
num_retries: 0
|
||||
disable_download_timeout: false
|
||||
needed_only: false
|
||||
-32
@@ -1,32 +0,0 @@
|
||||
efi:
|
||||
mountPoint: "/boot/efi"
|
||||
recommendedSize: 512MiB
|
||||
minimumSize: 256MiB
|
||||
label: "EFI"
|
||||
|
||||
userSwapChoices:
|
||||
- none # Create no swap, use no swap
|
||||
- small # Up to 4GB
|
||||
- suspend # At least main memory size
|
||||
- file # To swap file instead of partition
|
||||
|
||||
swapPartitionName: swap
|
||||
|
||||
luksGeneration: luks1
|
||||
|
||||
drawNestedPartitions: true
|
||||
|
||||
alwaysShowPartitionLabels: true
|
||||
|
||||
initialPartitioningChoice: none
|
||||
|
||||
initialSwapChoice: suspend
|
||||
|
||||
defaultPartitionTableType: msdos
|
||||
|
||||
requiredPartitionTableType:
|
||||
- msdos
|
||||
- gpt
|
||||
|
||||
defaultFileSystemType: "ext4"
|
||||
availableFileSystemTypes: ["ext4","btrfs","f2fs","xfs"]
|
||||
@@ -1,13 +0,0 @@
|
||||
---
|
||||
# set at iso build time
|
||||
initsys: none
|
||||
|
||||
user-services:
|
||||
- name: dbus
|
||||
action: enable
|
||||
- name: pipewire
|
||||
action: enable
|
||||
- name: pipewire-pulse
|
||||
action: enable
|
||||
- name: wireplumber
|
||||
action: enable
|
||||
-24
@@ -1,24 +0,0 @@
|
||||
---
|
||||
command: artix-service
|
||||
|
||||
services:
|
||||
- name: "acpid"
|
||||
action: "enable"
|
||||
- name: "bluetoothd"
|
||||
action: "enable"
|
||||
- name: "cronie"
|
||||
action: "enable"
|
||||
- name: "cupsd"
|
||||
action: "enable"
|
||||
- name: "dbus"
|
||||
action: "enable"
|
||||
- name: "dhcpcd"
|
||||
action: "enable"
|
||||
- name: "NetworkManager"
|
||||
action: "enable"
|
||||
- name: "power-profiles-daemon"
|
||||
action: "enable"
|
||||
- name: "sddm"
|
||||
action: "enable"
|
||||
- name: "syslog-ng"
|
||||
action: "enable"
|
||||
@@ -1,2 +0,0 @@
|
||||
---
|
||||
emergency: false
|
||||
@@ -1,49 +0,0 @@
|
||||
---
|
||||
defaultGroups:
|
||||
- name: users
|
||||
must_exist: true
|
||||
system: true
|
||||
- lp
|
||||
- video
|
||||
- network
|
||||
- storage
|
||||
- name: wheel
|
||||
must_exist: false
|
||||
system: true
|
||||
- audio
|
||||
- power
|
||||
- log
|
||||
- optical
|
||||
- network
|
||||
- scanner
|
||||
|
||||
autologinGroup: autologin
|
||||
|
||||
doAutologin: false
|
||||
|
||||
sudoersGroup: wheel
|
||||
|
||||
setRootPassword: true
|
||||
|
||||
doReusePassword: false
|
||||
|
||||
passwordRequirements:
|
||||
nonempty: true
|
||||
minLength: 4 # Password at least this many characters
|
||||
maxLength: -1 # Password at most this many characters
|
||||
libpwquality:
|
||||
- minlen=4
|
||||
- minclass=0
|
||||
|
||||
allowWeakPasswords: true
|
||||
allowWeakPasswordsDefault: true
|
||||
|
||||
userShell: /bin/bash
|
||||
|
||||
setHostname: EtcFile
|
||||
|
||||
writeHostsFile: true
|
||||
|
||||
user:
|
||||
shell: /bin/bash
|
||||
forbidden_names: [ root ]
|
||||
@@ -1,20 +0,0 @@
|
||||
---
|
||||
showSupportUrl: true
|
||||
showKnownIssuesUrl: true
|
||||
showReleaseNotesUrl: true
|
||||
|
||||
requirements:
|
||||
requiredStorage: 5.5
|
||||
requiredRam: 1.0
|
||||
internetCheckUrl: https://www.artixlinux.org
|
||||
check:
|
||||
- storage
|
||||
- ram
|
||||
- power
|
||||
- internet
|
||||
- root
|
||||
required:
|
||||
- storage
|
||||
- ram
|
||||
- root
|
||||
- internet
|
||||
@@ -1,64 +0,0 @@
|
||||
---
|
||||
modules-search: [ local ]
|
||||
|
||||
sequence:
|
||||
- show:
|
||||
- welcome
|
||||
- notesqml@minimal-info
|
||||
- locale
|
||||
- keyboard
|
||||
- packagechooser
|
||||
- packagechooser@dm
|
||||
- netinstall
|
||||
- partition
|
||||
- users
|
||||
- summary
|
||||
- exec:
|
||||
- partition
|
||||
- mount
|
||||
- basestrap
|
||||
- machineid
|
||||
- packages
|
||||
- fstab
|
||||
- locale
|
||||
- keyboard
|
||||
- localecfg
|
||||
- luksopenswaphookcfg
|
||||
- luksbootkeyfile
|
||||
- initcpiocfg
|
||||
- initcpio
|
||||
- users
|
||||
- displaymanager
|
||||
- networkcfg
|
||||
- hwclock
|
||||
- services-artix
|
||||
- grubcfg
|
||||
- bootloader
|
||||
- postcfg
|
||||
- umount
|
||||
- show:
|
||||
- finished
|
||||
|
||||
instances:
|
||||
- id: dm
|
||||
module: packagechooser
|
||||
config: packagechooser_dm.conf
|
||||
- id: minimal-info
|
||||
module: notesqml
|
||||
config: minimal-info.conf
|
||||
|
||||
branding: antergos-next-minimal
|
||||
|
||||
prompt-install: false
|
||||
|
||||
dont-chroot: false
|
||||
|
||||
oem-setup: false
|
||||
|
||||
disable-cancel: false
|
||||
|
||||
disable-cancel-during-exec: false
|
||||
|
||||
hide-back-and-next-during-exec: false
|
||||
|
||||
quit-at-end: false
|
||||
@@ -1,35 +0,0 @@
|
||||
---
|
||||
backend: pacman
|
||||
|
||||
pacman:
|
||||
num_retries: 0
|
||||
disable_download_timeout: false
|
||||
needed_only: false
|
||||
handle_keyrings: true
|
||||
copy_pacconf: true
|
||||
requirements:
|
||||
- dest: /etc
|
||||
mode: "0o755"
|
||||
- dest: /var
|
||||
mode: "0o755"
|
||||
- dest: /var/cache
|
||||
mode: "0o755"
|
||||
- dest: /var/cache/pacman
|
||||
mode: "0o755"
|
||||
- dest: /var/cache/pacman/pkg
|
||||
mode: "0o755"
|
||||
- dest: /var/lib
|
||||
mode: "0o755"
|
||||
- dest: /var/lib/pacman
|
||||
mode: "0o755"
|
||||
keyrings:
|
||||
- artix
|
||||
- antergos-next
|
||||
|
||||
base_init: elogind
|
||||
|
||||
operations:
|
||||
- install:
|
||||
- base
|
||||
- antergos-next-keyring
|
||||
|
||||
@@ -1,21 +0,0 @@
|
||||
---
|
||||
efiBootLoader: "grub"
|
||||
|
||||
kernel: "/vmlinuz-linux-x86_64"
|
||||
img: "/initramfs-linux-x86_64.img"
|
||||
fallback: "/initramfs-linux-x86_64-fallback.img"
|
||||
timeout: "10"
|
||||
|
||||
grubInstall: "grub-install"
|
||||
grubMkconfig: "grub-mkconfig"
|
||||
grubCfg: "/boot/grub/grub.cfg"
|
||||
grubProbe: "grub-probe"
|
||||
efiBootMgr: "efibootmgr"
|
||||
|
||||
installEFIFallback: true
|
||||
|
||||
efiBootloaderId: "Antergos"
|
||||
|
||||
# installHybridGRUB: false
|
||||
|
||||
# efiBootLoaderVar: "packagechooser_bootloader"
|
||||
@@ -1,12 +0,0 @@
|
||||
---
|
||||
displaymanagers:
|
||||
- sddm
|
||||
- lightdm
|
||||
- lxdm
|
||||
- ly
|
||||
- greetd
|
||||
- gdm
|
||||
- mdm
|
||||
- slim
|
||||
|
||||
basicSetup: false
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
restartNowMode: user-unchecked
|
||||
|
||||
restartNowCommand: "loginctl reboot"
|
||||
|
||||
notifyOnFinished: false
|
||||
@@ -1,20 +0,0 @@
|
||||
# SPDX-FileCopyrightText: no
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
---
|
||||
overwrite: false
|
||||
|
||||
prefer_grub_d: false
|
||||
|
||||
keep_distributor: false
|
||||
|
||||
kernel_params: [ "quiet" ]
|
||||
|
||||
defaults:
|
||||
GRUB_TIMEOUT: 5
|
||||
GRUB_DEFAULT: "saved"
|
||||
GRUB_DISABLE_SUBMENU: true
|
||||
GRUB_TERMINAL_OUTPUT: "console"
|
||||
GRUB_DISABLE_RECOVERY: true
|
||||
GRUB_THEME: "/usr/share/grub/themes/antergos/theme.txt"
|
||||
|
||||
always_use_defaults: false
|
||||
@@ -1,6 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
|
||||
<circle cx="32" cy="32" r="30" fill="#f67400"/>
|
||||
<g transform="translate(21,21) scale(1)">
|
||||
<path d="m3 3v16l16-8z" fill="white"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 212 B |
@@ -1,6 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
|
||||
<circle cx="32" cy="32" r="30" fill="#3daee9"/>
|
||||
<g transform="translate(21,21) scale(1)">
|
||||
<path d="M 11.5 3 C 10.286139 3 9.2809778 3.8559279 9.0507812 5 L 3 5 L 3 6 L 9.0507812 6 C 9.2809778 7.1440721 10.286139 8 11.5 8 C 12.713861 8 13.719022 7.1440721 13.949219 6 L 19 6 L 19 5 L 13.949219 5 C 13.719022 3.8559279 12.713861 3 11.5 3 z M 5.5 14 C 4.1149999 14 3 15.115 3 16.5 C 3 17.885 4.1149999 19 5.5 19 C 6.7138604 19 7.7190223 18.144072 7.9492188 17 L 19 17 L 19 16 L 7.9492188 16 C 7.7190223 14.855928 6.7138604 14 5.5 14 z M 5.5 15 C 6.3310001 15 7 15.669 7 16.5 C 7 17.331 6.3310001 18 5.5 18 C 4.6689999 18 4 17.331 4 16.5 C 4 15.669 4.6689999 15 5.5 15 z" fill="white"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 766 B |
@@ -1,6 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
|
||||
<circle cx="32" cy="32" r="30" fill="#27ae60"/>
|
||||
<g transform="translate(21,21) scale(1)">
|
||||
<path d="M 3 3 L 3 7 L 3 18 L 3 19 L 13 19 L 19 19 L 19 18 L 19 13 L 19 7 L 19 3 L 3 3 z M 4 7 L 18 7 L 18 13 L 18 18 L 13 18 L 4 18 L 4 7 z M 9 10 L 9 16 L 14 13 L 9 10 z" fill="white"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 361 B |
@@ -1,6 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
|
||||
<circle cx="32" cy="32" r="30" fill="#9b59b6"/>
|
||||
<g transform="translate(21,21) scale(1)">
|
||||
<path d="m11 3a8 8 0 0 0-7.9277344 7h1.0058594a7 7 0 0 1 6.921875-6 7 7 0 0 1 6.320312 4h-3.320312v1h5v-1-4h-1v3.1679688a8 8 0 0 0-7-4.1679688zm6.921875 9a7 7 0 0 1-6.921875 6 7 7 0 0 1-6.3105469-4h3.3105469v-1h-5v1 4h1v-3.195312a8 8 0 0 0 7 4.195312 8 8 0 0 0 7.927734-7h-1.005859z" fill="white"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 472 B |
@@ -1,5 +0,0 @@
|
||||
---
|
||||
systemd: false
|
||||
dbus: false
|
||||
dbus-symlink: false
|
||||
entropy-copy: false
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
qmlSearch: branding
|
||||
qmlFilename: minimal-info.qml
|
||||
qmlLabel:
|
||||
minimal-info: "About This Edition"
|
||||
@@ -1,54 +0,0 @@
|
||||
---
|
||||
groupsUrl:
|
||||
- file:///etc/calamares/modules/netinstall.yaml
|
||||
|
||||
required: false
|
||||
|
||||
# To support multiple instances of this module,
|
||||
# some strings are configurable and translatable here.
|
||||
# Sub-keys under *label* are used for the user interface.
|
||||
# - *sidebar* This is the name of the module in the progress-tree / sidebar
|
||||
# in Calamares.
|
||||
# - *title* This is displayed above the list of packages.
|
||||
# If no *sidebar* values are provided, defaults to "Package selection"
|
||||
# and existing translations. If no *title* values are provided, no string
|
||||
# is displayed.
|
||||
#
|
||||
# Translations are handled through `[ll]` notation, much like in
|
||||
# `.desktop` files. The string associated with `key[ll]` is used for
|
||||
# *key* when when the language *ll* (language-code, like *nl* or *en_GB*
|
||||
# or *ja*) is used.
|
||||
#
|
||||
# The following strings are **already** known to Calamares and can be
|
||||
# listed here in *untranslated* form (e.g. as value of *sidebar*)
|
||||
# without bothering with the translations: they are picked up from
|
||||
# the regular translation framework:
|
||||
# - "Package selection"
|
||||
# - "Office software"
|
||||
# - "Office package"
|
||||
# - "Browser software"
|
||||
# - "Browser package"
|
||||
# - "Web browser"
|
||||
# - "Kernel"
|
||||
# - "Services"
|
||||
# - "Login"
|
||||
# - "Desktop"
|
||||
# - "Applications"
|
||||
# - "Communication"
|
||||
# - "Development"
|
||||
# - "Office"
|
||||
# - "Multimedia"
|
||||
# - "Internet"
|
||||
# - "Theming"
|
||||
# - "Gaming"
|
||||
# - "Utilities"
|
||||
# Other strings should follow the translations format.
|
||||
label:
|
||||
sidebar: "Package selection"
|
||||
# sidebar[nl]: "Pakketkeuze"
|
||||
# sidebar[en_GB]: "Package choice"
|
||||
# sidebar[ja]: "知りません" # "I don't know"
|
||||
# title: "Office Package"
|
||||
# title[nl]: "Kantoorsoftware"
|
||||
|
||||
|
||||
@@ -1,281 +0,0 @@
|
||||
- name: "Default"
|
||||
description: "Default packages"
|
||||
hidden: false
|
||||
selected: true
|
||||
critical: true
|
||||
immutable: true
|
||||
packages:
|
||||
- linux
|
||||
- linux-headers
|
||||
- grub
|
||||
- efibootmgr
|
||||
- sudo
|
||||
- antergos-release
|
||||
- antergos-next-keyring
|
||||
- antergos-wallpapers
|
||||
- antergos-grub-theme
|
||||
- falkon
|
||||
- mesa
|
||||
- mesa-utils
|
||||
- networkmanager
|
||||
- network-manager-applet
|
||||
- pipewire
|
||||
- pipewire-alsa
|
||||
- pipewire-pulse
|
||||
- wireplumber
|
||||
|
||||
|
||||
- name: "Kernel"
|
||||
description: "Kernel and modules"
|
||||
selected: false
|
||||
packages:
|
||||
- acpi_call
|
||||
- bbswitch
|
||||
- broadcom-wl
|
||||
- tp_smapi
|
||||
- linux-lts
|
||||
- linux-lts-headers
|
||||
|
||||
- name: "Firmware"
|
||||
description: "Firmware"
|
||||
selected: false
|
||||
packages:
|
||||
- b43-fwcutter
|
||||
- linux-firmware
|
||||
- linux-firmware-bnx2x
|
||||
- linux-firmware-liquidio
|
||||
- linux-firmware-marvell
|
||||
- linux-firmware-mellanox
|
||||
- linux-firmware-nfp
|
||||
- linux-firmware-qcom
|
||||
- linux-firmware-qlogic
|
||||
- linux-firmware-whence
|
||||
- sof-firmware
|
||||
- alsa-firmware
|
||||
- intel-ucode
|
||||
- amd-ucode
|
||||
|
||||
- name: "Utilities"
|
||||
description: "System Utilities"
|
||||
selected: true
|
||||
packages:
|
||||
- antergos-lsb-release
|
||||
- nano
|
||||
- vi
|
||||
|
||||
- name: "Devel"
|
||||
description: "Development tools"
|
||||
selected: false
|
||||
packages:
|
||||
- base-devel
|
||||
- artools-base
|
||||
- artools-iso
|
||||
- artools-pkg
|
||||
|
||||
- name: "Desktop"
|
||||
description: "DE"
|
||||
selected: true
|
||||
critical: false
|
||||
subgroups:
|
||||
- name: "Plasma"
|
||||
description: "KDE Plasma Desktop"
|
||||
selected: true
|
||||
packages:
|
||||
- antergos-plasma-theme
|
||||
- antergos-next-desktop-settings
|
||||
- ark
|
||||
- bluedevil
|
||||
- breeze-gtk
|
||||
- dolphin
|
||||
- dolphin-plugins
|
||||
- ffmpegthumbs
|
||||
- gwenview
|
||||
- kate
|
||||
- kcalc
|
||||
- kde-cli-tools
|
||||
- kde-gtk-config
|
||||
- kdeconnect
|
||||
- kdegraphics-thumbnailers
|
||||
- kdenetwork-filesharing
|
||||
- kdeplasma-addons
|
||||
- keditbookmarks
|
||||
- kfind
|
||||
- kgpg
|
||||
- kinfocenter
|
||||
- kio-admin
|
||||
- kio-extras
|
||||
- kio-fuse
|
||||
- konsole
|
||||
- konversation
|
||||
- kscreen
|
||||
- kwallet-pam
|
||||
- kwalletmanager
|
||||
- kwayland-integration
|
||||
- okular
|
||||
- partitionmanager
|
||||
- plasma-browser-integration
|
||||
- plasma-desktop
|
||||
- plasma-disks
|
||||
- plasma-nm
|
||||
- plasma-pa
|
||||
- plasma-systemmonitor
|
||||
- plasma-workspace
|
||||
- powerdevil
|
||||
- print-manager
|
||||
- qt6-imageformats
|
||||
- spectacle
|
||||
- xdg-desktop-portal-kde
|
||||
- xsettingsd
|
||||
- name: "Xfce"
|
||||
description: "Xfce Desktop"
|
||||
selected: false
|
||||
packages:
|
||||
- antergos-xfce-theme
|
||||
- exo
|
||||
- garcon
|
||||
- thunar
|
||||
- thunar-volman
|
||||
- tumbler
|
||||
- xfce4-appfinder
|
||||
- xfce4-panel
|
||||
- xfce4-power-manager
|
||||
- xfce4-session
|
||||
- xfce4-settings
|
||||
- xfce4-terminal
|
||||
- xfconf
|
||||
- xfdesktop
|
||||
- xfwm4
|
||||
- xfwm4-themes
|
||||
- mousepad
|
||||
- parole
|
||||
- ristretto
|
||||
- thunar-archive-plugin
|
||||
- thunar-media-tags-plugin
|
||||
- xfburn
|
||||
- xfce4-clipman-plugin
|
||||
- xfce4-notifyd
|
||||
- xfce4-pulseaudio-plugin
|
||||
- xfce4-screenshooter
|
||||
- xfce4-screensaver
|
||||
- xfce4-taskmanager
|
||||
- xfce4-whiskermenu-plugin
|
||||
- name: "Cinnamon"
|
||||
description: "Cinnamon Desktop"
|
||||
selected: false
|
||||
packages:
|
||||
- cinnamon
|
||||
- cinnamon-control-center
|
||||
- cinnamon-desktop
|
||||
- cinnamon-menus
|
||||
- cinnamon-screensaver
|
||||
- cinnamon-session
|
||||
- cinnamon-settings-daemon
|
||||
- cinnamon-translations
|
||||
- name: "MATE"
|
||||
description: "MATE Desktop"
|
||||
selected: false
|
||||
packages:
|
||||
- caja
|
||||
- marco
|
||||
- mate-backgrounds
|
||||
- mate-control-center
|
||||
- mate-desktop
|
||||
- mate-icon-theme
|
||||
- mate-menus
|
||||
- mate-notification-daemon
|
||||
- mate-panel
|
||||
- mate-polkit
|
||||
- mate-session-manager
|
||||
- mate-settings-daemon
|
||||
- mate-themes
|
||||
- mate-user-guide
|
||||
- atril
|
||||
- eom
|
||||
- mate-applets
|
||||
- mate-calc
|
||||
- mate-power-manager
|
||||
- mate-screensaver
|
||||
- mate-system-monitor
|
||||
- mate-terminal
|
||||
- mate-utils
|
||||
- pluma
|
||||
- name: "LXQt"
|
||||
description: "LXQt Desktop"
|
||||
selected: false
|
||||
packages:
|
||||
- lximage-qt
|
||||
- lxqt-about
|
||||
- lxqt-admin
|
||||
- lxqt-archiver
|
||||
- lxqt-config
|
||||
- lxqt-globalkeys
|
||||
- lxqt-menu-data
|
||||
- lxqt-notificationd
|
||||
- lxqt-openssh-askpass
|
||||
- lxqt-panel
|
||||
- lxqt-policykit
|
||||
- lxqt-powermanagement
|
||||
- lxqt-qtplugin
|
||||
- lxqt-runner
|
||||
- lxqt-session
|
||||
- lxqt-sudo
|
||||
- lxqt-themes
|
||||
- obconf-qt
|
||||
- openbox
|
||||
- pavucontrol-qt
|
||||
- pcmanfm-qt
|
||||
- qps
|
||||
- qterminal
|
||||
- screengrab
|
||||
- xdg-desktop-portal-lxqt
|
||||
- name: "i3"
|
||||
description: "i3 Tiling WM"
|
||||
selected: false
|
||||
packages:
|
||||
- i3-wm
|
||||
- i3blocks
|
||||
- i3lock
|
||||
- i3status
|
||||
- name: "Sway"
|
||||
description: "Sway Wayland Compositor"
|
||||
selected: false
|
||||
packages:
|
||||
- sway
|
||||
- swaybg
|
||||
- swayidle
|
||||
- swaylock
|
||||
- name: "Hyprland"
|
||||
description: "Hyprland Wayland Compositor"
|
||||
selected: false
|
||||
packages:
|
||||
- hyprland
|
||||
- xdg-desktop-portal-hyprland
|
||||
|
||||
- name: "SDDM"
|
||||
description: "SDDM display manager"
|
||||
selected: false
|
||||
packages:
|
||||
- sddm
|
||||
- sddm-dinit
|
||||
- antergos-sddm-theme
|
||||
|
||||
- name: "LightDM"
|
||||
description: "LightDM display manager"
|
||||
selected: false
|
||||
packages:
|
||||
- lightdm
|
||||
- lightdm-dinit
|
||||
|
||||
- name: "LXDM"
|
||||
description: "LXDM display manager"
|
||||
selected: false
|
||||
packages:
|
||||
- lxdm
|
||||
- lxdm-dinit
|
||||
|
||||
- name: "LY"
|
||||
description: "LY display manager"
|
||||
selected: false
|
||||
packages:
|
||||
- ly
|
||||
- ly-dinit
|
||||
@@ -1,303 +0,0 @@
|
||||
---
|
||||
mode: required
|
||||
|
||||
method: netinstall-add
|
||||
|
||||
labels:
|
||||
step: "Init selection"
|
||||
step[de]: "Initauswahl"
|
||||
|
||||
default: Dinit
|
||||
|
||||
items:
|
||||
- id: Dinit
|
||||
name: dinit
|
||||
description: "Dinit init system"
|
||||
screenshot: "/etc/calamares/modules/images/dinit.svg"
|
||||
netinstall:
|
||||
name: "dinit"
|
||||
description: "Dinit init system"
|
||||
selected: true
|
||||
critical: true
|
||||
immutable: false
|
||||
expanded: true
|
||||
hidden: false
|
||||
subgroups:
|
||||
- name: "Default"
|
||||
description: "Default services"
|
||||
selected: true
|
||||
hidden: true
|
||||
packages:
|
||||
- audit-dinit
|
||||
- cryptsetup-dinit
|
||||
- dbus-dinit
|
||||
- dhcpcd-dinit
|
||||
- lvm2-dinit
|
||||
- mdadm-dinit
|
||||
- name: "Cron"
|
||||
description: "Cron init"
|
||||
selected: true
|
||||
packages:
|
||||
- cronie-dinit
|
||||
- name: "Syslog"
|
||||
description: "Syslog init"
|
||||
packages:
|
||||
- syslog-ng-dinit
|
||||
- metalog-dinit
|
||||
- name: "Internet"
|
||||
description: "Network init"
|
||||
packages:
|
||||
- avahi-dinit
|
||||
- bluez-dinit
|
||||
- iptables-dinit
|
||||
- krb5-dinit
|
||||
- networkmanager-dinit
|
||||
- nfs-utils-dinit
|
||||
- ntp-dinit
|
||||
- openldap-dinit
|
||||
- openssh-dinit
|
||||
- rpcbind-dinit
|
||||
- xinetd-dinit
|
||||
- wpa_supplicant-dinit
|
||||
- name: "Office"
|
||||
description: "Office init"
|
||||
packages:
|
||||
- cups-dinit
|
||||
- sane-dinit
|
||||
- name: "Services"
|
||||
description: "Services init"
|
||||
packages:
|
||||
- acpid-dinit
|
||||
- alsa-utils-dinit
|
||||
- apparmor-dinit
|
||||
- brltty-dinit
|
||||
- fuse-dinit
|
||||
- gpm-dinit
|
||||
- hdparm-dinit
|
||||
- haveged-dinit
|
||||
- lm_sensors-dinit
|
||||
- openvpn-dinit
|
||||
- pipewire-dinit
|
||||
- pipewire-pulse-dinit
|
||||
- power-profiles-daemon-dinit
|
||||
- rsync-dinit
|
||||
- wireplumber-dinit
|
||||
|
||||
- id: OpenRC
|
||||
name: openrc
|
||||
description: "⚠ OpenRC init system — BROKEN in Antergos NeXT (init-rc conflict with dinit). Will be re-added once fixed."
|
||||
screenshot: "/etc/calamares/modules/images/openrc.svg"
|
||||
netinstall:
|
||||
name: "openrc"
|
||||
description: "OpenRC init system"
|
||||
selected: false
|
||||
critical: false
|
||||
immutable: false
|
||||
expanded: true
|
||||
hidden: false
|
||||
subgroups:
|
||||
- name: "Default"
|
||||
description: "Default services"
|
||||
selected: true
|
||||
hidden: true
|
||||
packages:
|
||||
- audit-openrc
|
||||
- cryptsetup-openrc
|
||||
- dbus-openrc
|
||||
- dhcpcd-openrc
|
||||
- lvm2-openrc
|
||||
- mdadm-openrc
|
||||
- name: "Cron"
|
||||
description: "Cron init"
|
||||
selected: true
|
||||
packages:
|
||||
- cronie-openrc
|
||||
- name: "Syslog"
|
||||
description: "Syslog init"
|
||||
packages:
|
||||
- syslog-ng-openrc
|
||||
- metalog-openrc
|
||||
- name: "Internet"
|
||||
description: "Network init"
|
||||
packages:
|
||||
- avahi-openrc
|
||||
- bluez-openrc
|
||||
- iptables-openrc
|
||||
- krb5-openrc
|
||||
- networkmanager-openrc
|
||||
- nfs-utils-openrc
|
||||
- ntp-openrc
|
||||
- openldap-openrc
|
||||
- openssh-openrc
|
||||
- rpcbind-openrc
|
||||
- xinetd-openrc
|
||||
- wpa_supplicant-openrc
|
||||
- name: "Office"
|
||||
description: "Office init"
|
||||
packages:
|
||||
- cups-openrc
|
||||
- sane-openrc
|
||||
- name: "Services"
|
||||
description: "Services init"
|
||||
packages:
|
||||
- acpid-openrc
|
||||
- alsa-utils-openrc
|
||||
- apparmor-openrc
|
||||
- brltty-openrc
|
||||
- fuse-openrc
|
||||
- gpm-openrc
|
||||
- hdparm-openrc
|
||||
- haveged-openrc
|
||||
- lm_sensors-openrc
|
||||
- openrc-settingsd
|
||||
- openvpn-openrc
|
||||
- pipewire-openrc
|
||||
- power-profiles-daemon-openrc
|
||||
- rsync-openrc
|
||||
- wireplumber-openrc
|
||||
|
||||
- id: S6
|
||||
name: s6
|
||||
description: "S6 init system"
|
||||
screenshot: "/etc/calamares/modules/images/s6.svg"
|
||||
netinstall:
|
||||
name: "s6"
|
||||
description: "S6 init system"
|
||||
selected: false
|
||||
critical: true
|
||||
immutable: false
|
||||
expanded: true
|
||||
hidden: false
|
||||
subgroups:
|
||||
- name: "Default"
|
||||
description: "Default services"
|
||||
selected: true
|
||||
hidden: true
|
||||
packages:
|
||||
- audit-s6
|
||||
- cryptsetup-s6
|
||||
- dbus-s6
|
||||
- dhcpcd-s6
|
||||
- lvm2-s6
|
||||
- mdadm-s6
|
||||
- s6-contrib
|
||||
- name: "Cron"
|
||||
description: "Cron init"
|
||||
selected: true
|
||||
packages:
|
||||
- cronie-s6
|
||||
- name: "Syslog"
|
||||
description: "Syslog init"
|
||||
packages:
|
||||
- syslog-ng-s6
|
||||
- metalog-s6
|
||||
- name: "Internet"
|
||||
description: "Network init"
|
||||
packages:
|
||||
- avahi-s6
|
||||
- bluez-s6
|
||||
- iptables-s6
|
||||
- krb5-s6
|
||||
- networkmanager-s6
|
||||
- nfs-utils-s6
|
||||
- ntp-s6
|
||||
- openldap-s6
|
||||
- openssh-s6
|
||||
- rpcbind-s6
|
||||
- xinetd-s6
|
||||
- wpa_supplicant-s6
|
||||
- name: "Office"
|
||||
description: "Office init"
|
||||
packages:
|
||||
- cups-s6
|
||||
- sane-s6
|
||||
- name: "Services"
|
||||
description: "Services init"
|
||||
packages:
|
||||
- acpid-s6
|
||||
- alsa-utils-s6
|
||||
- apparmor-s6
|
||||
- brltty-s6
|
||||
- fuse-s6
|
||||
- gpm-s6
|
||||
- hdparm-s6
|
||||
- haveged-s6
|
||||
- lm_sensors-s6
|
||||
- openvpn-s6
|
||||
- pipewire-s6
|
||||
- power-profiles-daemon-s6
|
||||
- rsync-s6
|
||||
- wireplumber-s6
|
||||
|
||||
- id: Runit
|
||||
name: runit
|
||||
description: "Runit init system"
|
||||
screenshot: "/etc/calamares/modules/images/runit.svg"
|
||||
netinstall:
|
||||
name: "runit"
|
||||
description: "Runit init system"
|
||||
selected: false
|
||||
critical: true
|
||||
immutable: false
|
||||
expanded: true
|
||||
hidden: false
|
||||
subgroups:
|
||||
- name: "Default"
|
||||
description: "Default services"
|
||||
selected: true
|
||||
hidden: true
|
||||
packages:
|
||||
- audit-runit
|
||||
- cryptsetup-runit
|
||||
- dbus-runit
|
||||
- dhcpcd-runit
|
||||
- lvm2-runit
|
||||
- mdadm-runit
|
||||
- rsm
|
||||
- name: "Cron"
|
||||
description: "Cron init"
|
||||
selected: true
|
||||
packages:
|
||||
- cronie-runit
|
||||
- name: "Syslog"
|
||||
description: "Syslog init"
|
||||
packages:
|
||||
- syslog-ng-runit
|
||||
- metalog-runit
|
||||
- name: "Internet"
|
||||
description: "Network init"
|
||||
packages:
|
||||
- avahi-runit
|
||||
- bluez-runit
|
||||
- iptables-runit
|
||||
- krb5-runit
|
||||
- networkmanager-runit
|
||||
- nfs-utils-runit
|
||||
- ntp-runit
|
||||
- openldap-runit
|
||||
- openssh-runit
|
||||
- rpcbind-runit
|
||||
- xinetd-runit
|
||||
- wpa_supplicant-runit
|
||||
- name: "Office"
|
||||
description: "Office init"
|
||||
packages:
|
||||
- cups-runit
|
||||
- sane-runit
|
||||
- name: "Services"
|
||||
description: "Services init"
|
||||
packages:
|
||||
- acpid-runit
|
||||
- alsa-utils-runit
|
||||
- apparmor-runit
|
||||
- brltty-runit
|
||||
- fuse-runit
|
||||
- gpm-runit
|
||||
- hdparm-runit
|
||||
- haveged-runit
|
||||
- lm_sensors-runit
|
||||
- openvpn-runit
|
||||
- pipewire-runit
|
||||
- power-profiles-daemon-runit
|
||||
- rsync-runit
|
||||
- wireplumber-runit
|
||||
-31
@@ -1,31 +0,0 @@
|
||||
---
|
||||
mode: required
|
||||
|
||||
method: netinstall-select
|
||||
|
||||
labels:
|
||||
step: "Display Manager"
|
||||
step[de]: "Display Manager"
|
||||
|
||||
default: SDDM
|
||||
|
||||
items:
|
||||
- id: SDDM
|
||||
name: sddm
|
||||
description: "QML-based (KDE default). ⚠ May conflict with Cinnamon/MATE/LXQt (Xorg provider incompatibility). Use LightDM instead if installing those."
|
||||
screenshot: ""
|
||||
|
||||
- id: LightDM
|
||||
name: lightdm
|
||||
description: "Cross-desktop (GTK). Compatible with all desktop environments."
|
||||
screenshot: ""
|
||||
|
||||
- id: LXDM
|
||||
name: lxdm
|
||||
description: "Lightweight (LXDE). Compatible with all desktop environments."
|
||||
screenshot: ""
|
||||
|
||||
- id: LY
|
||||
name: ly
|
||||
description: "Minimal TUI. Compatible with all desktop environments."
|
||||
screenshot: ""
|
||||
@@ -1,13 +0,0 @@
|
||||
---
|
||||
backend: pacman
|
||||
skip_if_no_internet: false
|
||||
update_db: true
|
||||
ignore_update_db_error: false
|
||||
update_system: false
|
||||
|
||||
pacman:
|
||||
num_retries: 3
|
||||
disable_download_timeout: false
|
||||
needed_only: true
|
||||
|
||||
operations: []
|
||||
@@ -1,13 +0,0 @@
|
||||
---
|
||||
# set at iso build time
|
||||
initsys: none
|
||||
|
||||
user-services:
|
||||
- name: dbus
|
||||
action: enable
|
||||
- name: pipewire
|
||||
action: enable
|
||||
- name: pipewire-pulse
|
||||
action: enable
|
||||
- name: wireplumber
|
||||
action: enable
|
||||
@@ -1,26 +0,0 @@
|
||||
---
|
||||
command: artix-service
|
||||
|
||||
services:
|
||||
- name: "acpid"
|
||||
action: "enable"
|
||||
- name: "bluetoothd"
|
||||
action: "enable"
|
||||
- name: "cronie"
|
||||
action: "enable"
|
||||
- name: "cupsd"
|
||||
action: "enable"
|
||||
- name: "dbus"
|
||||
action: "enable"
|
||||
- name: "dhcpcd"
|
||||
action: "enable"
|
||||
- name: "NetworkManager"
|
||||
action: "enable"
|
||||
- name: "power-profiles-daemon"
|
||||
action: "enable"
|
||||
- name: "sddm"
|
||||
action: "enable"
|
||||
- name: "syslog-ng"
|
||||
action: "enable"
|
||||
- name: "userspawn"
|
||||
action: "enable"
|
||||
@@ -1,45 +0,0 @@
|
||||
# This file is part of elogind.
|
||||
#
|
||||
# elogind is free software; you can redistribute it and/or modify it under the
|
||||
# terms of the GNU Lesser General Public License as published by the Free
|
||||
# Software Foundation; either version 2.1 of the License, or (at your option)
|
||||
# any later version.
|
||||
#
|
||||
# Entries in this file show the compile time defaults. Local configuration
|
||||
# should be created by either modifying this file, or by creating "drop-ins" in
|
||||
# the logind.conf.d/ subdirectory. The latter is generally recommended.
|
||||
# Defaults can be restored by simply deleting this file and all drop-ins.
|
||||
#
|
||||
# See logind.conf(5) for details.
|
||||
|
||||
[Login]
|
||||
#KillUserProcesses=no
|
||||
#KillOnlyUsers=
|
||||
#KillExcludeUsers=root
|
||||
#InhibitDelayMaxSec=5
|
||||
#UserStopDelaySec=10
|
||||
#HandlePowerKey=poweroff
|
||||
#HandlePowerKeyLongPress=ignore
|
||||
#HandleRebootKey=reboot
|
||||
#HandleRebootKeyLongPress=poweroff
|
||||
#HandleSuspendKey=suspend
|
||||
#HandleSuspendKeyLongPress=hibernate
|
||||
#HandleHibernateKey=hibernate
|
||||
#HandleHibernateKeyLongPress=ignore
|
||||
#HandleLidSwitch=suspend
|
||||
#HandleLidSwitchExternalPower=suspend
|
||||
#HandleLidSwitchDocked=ignore
|
||||
#PowerKeyIgnoreInhibited=no
|
||||
#SuspendKeyIgnoreInhibited=no
|
||||
#HibernateKeyIgnoreInhibited=no
|
||||
#LidSwitchIgnoreInhibited=yes
|
||||
#RebootKeyIgnoreInhibited=no
|
||||
#HoldoffTimeoutSec=30s
|
||||
#IdleAction=ignore
|
||||
#IdleActionSec=30min
|
||||
#RuntimeDirectorySize=10%
|
||||
#RuntimeDirectoryInodesMax=
|
||||
#RemoveIPC=yes
|
||||
#InhibitorsMax=8192
|
||||
#SessionsMax=8192
|
||||
#StopIdleSessionSec=infinity
|
||||
@@ -1,36 +0,0 @@
|
||||
# This file is part of elogind.
|
||||
#
|
||||
# elogind is free software; you can redistribute it and/or modify it under the
|
||||
# terms of the GNU Lesser General Public License as published by the Free
|
||||
# Software Foundation; either version 2.1 of the License, or (at your option)
|
||||
# any later version.
|
||||
#
|
||||
# Entries in this file show the compile time defaults. Local configuration
|
||||
# should be created by either modifying this file, or by creating "drop-ins" in
|
||||
# the sleep.conf.d/ subdirectory. The latter is generally recommended.
|
||||
# Defaults can be restored by simply deleting this file and all drop-ins.
|
||||
#
|
||||
# See sleep.conf(5) for details.
|
||||
|
||||
[Sleep]
|
||||
#AllowSuspend=yes
|
||||
#AllowHibernation=yes
|
||||
#AllowSuspendThenHibernate=yes
|
||||
#AllowHybridSleep=yes
|
||||
#SuspendMode=
|
||||
#SuspendState=mem standby freeze
|
||||
#HibernateMode=platform shutdown
|
||||
#HibernateState=disk
|
||||
#HybridSleepMode=suspend platform shutdown
|
||||
#HybridSleepState=disk
|
||||
#HibernateDelaySec=
|
||||
#SuspendEstimationSec=60min
|
||||
|
||||
# elogind additions
|
||||
#AllowPowerOffInterrupts=no
|
||||
#BroadcastPowerOffInterrupts=yes
|
||||
#AllowSuspendInterrupts=no
|
||||
#BroadcastSuspendInterrupts=yes
|
||||
#SuspendByUsing=
|
||||
#HibernateByUsing=
|
||||
#HandleNvidiaSleep=no
|
||||
@@ -1,5 +0,0 @@
|
||||
#
|
||||
# /etc/fstab: static file system information
|
||||
#
|
||||
# <file system> <dir> <type> <options> <dump> <pass>
|
||||
/dev/mapper/rootfs / auto defaults 0 0
|
||||
@@ -1 +0,0 @@
|
||||
antergos-live
|
||||
@@ -1,2 +0,0 @@
|
||||
127.0.0.1 localhost.localdomain antergos-live localhost
|
||||
::1 localhost.localdomain antergos-live localhost
|
||||
@@ -1,19 +0,0 @@
|
||||
[?25l[?7l[0m[36m[1m `.-/::/-``
|
||||
.-/osssssssso/.
|
||||
:osyysssssssyyys+-
|
||||
`.+yyyysssssssssyyyyy+.
|
||||
`/syyyyyssssssssssyyyyys-`
|
||||
`/yhyyyyysss++ssosyyyyhhy/`
|
||||
.ohhhyyyyso++/+oso+syy+shhhho.
|
||||
.shhhhysoo++//+sss+++yyy+shhhhs.
|
||||
-yhhhhs+++++++ossso+++yyys+ohhddy:
|
||||
-yddhhyo+++++osyyss++++yyyyooyhdddy-
|
||||
.yddddhso++osyyyyys+++++yyhhsoshddddy`
|
||||
`odddddhyosyhyyyyyy++++++yhhhyosddddddo
|
||||
.dmdddddhhhhhhhyyyo+++++shhhhhohddddmmh.
|
||||
ddmmdddddhhhhhhhso++++++yhhhhhhdddddmmdy
|
||||
dmmmdddddddhhhyso++++++shhhhhddddddmmmmh
|
||||
-dmmmdddddddhhyso++++oshhhhdddddddmmmmd-
|
||||
.smmmmddddddddhhhhhhhhhdddddddddmmmms.
|
||||
`+ydmmmdddddddddddddddddddmmmmdy/.
|
||||
`.:+ooyyddddddddddddyyso+:.`
|
||||
@@ -1,8 +0,0 @@
|
||||
|
||||
[?25h[?7hAntergos NeXT Live ISO (\l) - \s-\r \m
|
||||
|
||||
# Welcome to Antergos NeXT #
|
||||
|
||||
login for the live environment:
|
||||
user 'antergos'
|
||||
password 'antergos'
|
||||
@@ -1,11 +0,0 @@
|
||||
NAME="Antergos NeXT"
|
||||
PRETTY_NAME="Antergos NeXT"
|
||||
ID=antergos
|
||||
ID_LIKE=artix
|
||||
BUILD_ID=rolling
|
||||
ANSI_COLOR="38;2;0;136;204"
|
||||
HOME_URL="https://github.com/Antergos-NeXT"
|
||||
DOCUMENTATION_URL="https://wiki.archlinux.org"
|
||||
SUPPORT_URL="https://github.com/Antergos-NeXT"
|
||||
BUG_REPORT_URL="https://github.com/Antergos-NeXT"
|
||||
LOGO=antergos-logo
|
||||
@@ -1,6 +0,0 @@
|
||||
#%PAM-1.0
|
||||
auth sufficient pam_rootok.so
|
||||
auth sufficient pam_wheel.so trust use_uid
|
||||
auth required pam_unix.so
|
||||
account required pam_unix.so
|
||||
session required pam_unix.so
|
||||
@@ -1,8 +0,0 @@
|
||||
/* Allow members of the wheel group to execute any actions
|
||||
* without password authentication, similar to "sudo NOPASSWD:"
|
||||
*/
|
||||
polkit.addRule(function(action, subject) {
|
||||
if (subject.isInGroup("wheel")) {
|
||||
return polkit.Result.YES;
|
||||
}
|
||||
});
|
||||
@@ -1,17 +0,0 @@
|
||||
[Autologin]
|
||||
Relogin=false
|
||||
Session=xfce.desktop
|
||||
User=antergos
|
||||
|
||||
[General]
|
||||
HaltCommand=/usr/bin/loginctl poweroff
|
||||
RebootCommand=/usr/bin/loginctl reboot
|
||||
|
||||
[Theme]
|
||||
Current=breeze
|
||||
CursorTheme=breeze_cursors
|
||||
Font=Noto Sans,10,-1,0,50,0,0,0,0,0
|
||||
|
||||
[Users]
|
||||
MaximumUid=60000
|
||||
MinimumUid=1000
|
||||
-11
@@ -1,11 +0,0 @@
|
||||
[Containments][1]
|
||||
activity=
|
||||
formfactor=0
|
||||
lastScreen=0
|
||||
location=0
|
||||
plugin=org.kde.plasma.folder
|
||||
wallpaperplugin=org.kde.image
|
||||
|
||||
[Containments][1][Wallpaper][org.kde.image][General]
|
||||
Image=file:///usr/share/wallpapers/antergos-wallpaper/contents/images/antergos-wallpaper.png
|
||||
FillMode=2
|
||||
-69
@@ -1,69 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfwm4" version="1.0">
|
||||
<property name="general" type="empty">
|
||||
<property name="theme" type="string" value="Antergos-NeXT"/>
|
||||
<property name="cycle_preview" type="bool" value="true"/>
|
||||
<property name="cycle_raise" type="bool" value="false"/>
|
||||
<property name="cycle_hidden" type="bool" value="true"/>
|
||||
<property name="cycle_minimum" type="bool" value="true"/>
|
||||
<property name="cycle_tabwin_mode" type="int" value="0"/>
|
||||
<property name="cycle_workspaces" type="bool" value="false"/>
|
||||
<property name="double_click_time" type="int" value="250"/>
|
||||
<property name="double_click_distance" type="int" value="5"/>
|
||||
<property name="easy_click" type="string" value="Alt"/>
|
||||
<property name="focus_delay" type="int" value="250"/>
|
||||
<property name="focus_hint" type="bool" value="true"/>
|
||||
<property name="focus_new" type="bool" value="true"/>
|
||||
<property name="frame_border_top" type="int" value="0"/>
|
||||
<property name="full_width_title" type="bool" value="true"/>
|
||||
<property name="horiz_scroll_opacity" type="bool" value="false"/>
|
||||
<property name="inactive_opacity" type="int" value="100"/>
|
||||
<property name="maximized_offset" type="int" value="0"/>
|
||||
<property name="mousewheel_rollup" type="bool" value="true"/>
|
||||
<property name="move_opacity" type="int" value="100"/>
|
||||
<property name="placement_mode" type="string" value="center"/>
|
||||
<property name="placement_ratio" type="int" value="50"/>
|
||||
<property name="popup_opacity" type="int" value="100"/>
|
||||
<property name="prevent_focus_stealing" type="bool" value="false"/>
|
||||
<property name="raise_delay" type="int" value="250"/>
|
||||
<property name="raise_on_click" type="bool" value="true"/>
|
||||
<property name="raise_on_focus" type="bool" value="false"/>
|
||||
<property name="resize_opacity" type="int" value="100"/>
|
||||
<property name="scroll_workspaces" type="bool" value="true"/>
|
||||
<property name="shadow_delta_height" type="int" value="0"/>
|
||||
<property name="shadow_delta_width" type="int" value="0"/>
|
||||
<property name="shadow_delta_x" type="int" value="0"/>
|
||||
<property name="shadow_delta_y" type="int" value="-2"/>
|
||||
<property name="shadow_opacity" type="int" value="30"/>
|
||||
<property name="show_app_icon" type="bool" value="true"/>
|
||||
<property name="show_frame_shadows" type="bool" value="true"/>
|
||||
<property name="show_handle" type="bool" value="false"/>
|
||||
<property name="sync_cycles" type="bool" value="false"/>
|
||||
<property name="tabwin_cycle" type="bool" value="true"/>
|
||||
<property name="tile_on_move" type="bool" value="true"/>
|
||||
<property name="title_alignment" type="string" value="center"/>
|
||||
<property name="title_font" type="string" value="Sans Bold 9"/>
|
||||
<property name="title_horizontal_offset" type="int" value="3"/>
|
||||
<property name="title_shadow_active" type="string" value="false"/>
|
||||
<property name="title_shadow_inactive" type="string" value="false"/>
|
||||
<property name="title_vertical_offset_active" type="int" value="0"/>
|
||||
<property name="title_vertical_offset_inactive" type="int" value="0"/>
|
||||
<property name="toggle_workspaces" type="bool" value="false"/>
|
||||
<property name="uniconify_mode" type="string" value="current"/>
|
||||
<property name="use_compositing" type="bool" value="true"/>
|
||||
<property name="wrap_cycle" type="bool" value="true"/>
|
||||
<property name="wrap_layout" type="bool" value="true"/>
|
||||
<property name="wrap_resistance" type="int" value="10"/>
|
||||
<property name="wrap_workspaces" type="bool" value="false"/>
|
||||
<property name="click_to_focus" type="bool" value="true"/>
|
||||
<property name="focus_delay_raise" type="bool" value="false"/>
|
||||
<property name="borderless_move" type="bool" value="false"/>
|
||||
<property name="button_layout" type="string" value="O|SHMC"/>
|
||||
<property name="child_colors" type="string" value=""/>
|
||||
<property name="vblank" type="string" value="auto"/>
|
||||
<property name="zoom_desktop" type="bool" value="false"/>
|
||||
<property name="titleless_maximize" type="bool" value="false"/>
|
||||
<property name="wrap_windows" type="bool" value="false"/>
|
||||
</property>
|
||||
</channel>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user