mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 15:03:01 +02:00
- Move all linux_configuration scripts into two semantic categories: - single_use/: scripts run once manually (fresh install, fixes, setup) - periodic_background/: scripts run by systemd timers or daemons - Preserve existing subdirectory structure within each category - Fix lib/common.sh source paths for new directory depths - Fix CONFIG_DIR depth in setup_periodic_system.sh and check_and_enable_services.sh - Update all references in tests, fresh-install/main.sh, nix modules, and docs - Fix check_polling_antipatterns.sh false positives (||, regex |, case patterns, jq strings) - Fix pre-existing mypy exclusion path and type annotations for moved tools/ directory - Rewrite check_polling_antipatterns.sh using awk (no bash regex loops); add require_serial: true |
||
|---|---|---|
| .. | ||
| aur_packages.txt | ||
| detect_gpu_and_install.sh | ||
| detect_gpu.sh | ||
| install_amd_driver.sh | ||
| install_intel_driver.sh | ||
| install_nvidia_driver.sh | ||
| main.sh | ||
| makepkg.conf | ||
| mkinitcpio.conf | ||
| mpv.conf | ||
| packages.txt | ||
| pacman_packages.txt | ||
| pacman.conf | ||
| README.md | ||
Package Lists
This directory contains package lists for the fresh install script:
pacman_packages.txt- List of packages to install via pacmanaur_packages.txt- List of AUR packages with their repository URLs
Format
pacman_packages.txt
One package name per line:
package1
package2
package3
# This is a comment and will be ignored
# Another comment
aur_packages.txt
Package name and repository URL separated by space:
package-name https://aur.archlinux.org/package-name.git
another-package https://aur.archlinux.org/another-package.git
# This is a comment and will be ignored
# Another comment
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.
Usage
The main.sh script will automatically read from these files:
- Pacman packages will be installed via
pacman -Sy --noconfirm - AUR packages will be built and installed via the
install_from_aurfunction
Modifying Package Lists
To add or remove packages:
- Edit the appropriate
.txtfile - For AUR packages, ensure the format is correct (package-name followed by space and URL)
- You can add comments by starting lines with
#or any non-alphanumeric character - Save the file - the script will automatically pick up changes on next run
Comments
You can add comments to organize your package lists:
# Essential packages
git
vim
# Development tools
gcc
make
# Optional packages (commented out)
# some-package-i-might-want-later