scripts/fresh-install
Copilot 18b9f020bb
Fix shell script formatting and add PR workflow validation (#3)
* Initial plan

* fix: format shell scripts with shfmt (convert tabs to 2 spaces)

Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com>

* feat: enhance shell-check workflow for PR pre-merge validation

- Add pull_request_target trigger to check PRs from forks
- Add explicit failure message with instructions
- Create BRANCH_PROTECTION.md with setup guide
- Ensure workflow runs on all PRs targeting main/master

Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com>

* refactor: improve workflow security and remove redundant exit code

- Remove pull_request_target to avoid executing untrusted fork code
- Remove redundant exit 1 from failure step
- Update documentation to reflect changes
- Standard pull_request trigger handles forks securely

Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com>
2026-01-07 22:52:20 +01:00
..
aur_packages.txt feat: added scripts to install different graphics 2025-08-14 13:38:43 +02:00
detect_gpu_and_install.sh fix: shellcheck issues 2025-11-01 15:36:22 +01:00
detect_gpu.sh fix: shellcheck issues 2025-11-01 15:36:22 +01:00
install_amd_driver.sh Fix shell script formatting and add PR workflow validation (#3) 2026-01-07 22:52:20 +01:00
install_intel_driver.sh Fix shell script formatting and add PR workflow validation (#3) 2026-01-07 22:52:20 +01:00
install_nvidia_driver.sh fix: shellcheck issues 2025-11-01 15:36:22 +01:00
main.sh Fix shell script formatting and add PR workflow validation (#3) 2026-01-07 22:52:20 +01:00
makepkg.conf fix: shellcheck issues 2025-11-01 15:36:22 +01:00
mkinitcpio.conf feat: added mkinicpio conf 2025-01-11 23:42:16 +00:00
mpv.conf feat: add mpv configuration 2025-01-21 08:03:45 +01:00
packages.txt feat: added packages list 2025-01-10 11:43:46 +01:00
pacman_packages.txt feat: added scripts to install different graphics 2025-08-14 13:38:43 +02:00
pacman.conf feat: add ignore packages block minecraft hosts and do not reinstall latex packages 2025-02-01 21:19:00 +01:00
README.md feat: added comments support 2025-08-01 12:59:08 +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

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_aur function

Modifying Package Lists

To add or remove packages:

  1. Edit the appropriate .txt file
  2. For AUR packages, ensure the format is correct (package-name followed by space and URL)
  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

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