2025-08-01 11:42:37 +02:00
# Package Lists
This directory contains package lists for the fresh install script:
- `pacman_packages.txt` - List of packages to install via pacman
- `aur_packages.txt` - List of AUR packages with their repository URLs
## Format
### pacman_packages.txt
2026-02-20 01:17:53 +01:00
2025-08-01 11:42:37 +02:00
One package name per line:
2026-02-20 01:17:53 +01:00
2025-08-01 11:42:37 +02:00
```
package1
package2
package3
2025-08-01 12:59:08 +02:00
# This is a comment and will be ignored
# Another comment
2025-08-01 11:42:37 +02:00
```
### aur_packages.txt
2026-02-20 01:17:53 +01:00
2025-08-01 11:42:37 +02:00
Package name and repository URL separated by space:
2026-02-20 01:17:53 +01:00
2025-08-01 11:42:37 +02:00
```
package-name https://aur.archlinux.org/package-name.git
another-package https://aur.archlinux.org/another-package.git
2025-08-01 12:59:08 +02:00
# This is a comment and will be ignored
# Another comment
2025-08-01 11:42:37 +02:00
```
2025-08-01 12:59:08 +02:00
**Note**: Lines starting with anything other than lowercase letters (a-z) or digits (0-9) will be ignored as comments. This includes lines starting with `#` , spaces, uppercase letters, or special characters.
2025-08-01 11:42:37 +02:00
## Usage
The `main.sh` script will automatically read from these files:
2026-02-20 01:17:53 +01:00
2025-08-01 11:42:37 +02:00
- Pacman packages will be installed via `pacman -Sy --noconfirm`
- AUR packages will be built and installed via the `install_from_aur` function
## Modifying Package Lists
To add or remove packages:
2026-02-20 01:17:53 +01:00
2025-08-01 11:42:37 +02:00
1. Edit the appropriate `.txt` file
2. For AUR packages, ensure the format is correct (package-name followed by space and URL)
2025-08-01 12:59:08 +02:00
3. You can add comments by starting lines with `#` or any non-alphanumeric character
4. Save the file - the script will automatically pick up changes on next run
### Comments
2026-02-20 01:17:53 +01:00
2025-08-01 12:59:08 +02:00
You can add comments to organize your package lists:
2026-02-20 01:17:53 +01:00
2025-08-01 12:59:08 +02:00
```
# Essential packages
git
vim
# Development tools
gcc
make
# Optional packages (commented out)
# some-package-i-might-want-later
```