My Arch Linux Post Install Script

preview_player
Показать описание
The post install setup of arch linux can be tedious. I intend to automate it with this script. It is for my personal use. you can use it. But read the script thoroughly.

Podcast:

Social accounts:

Online presence:

Support me on:

Free(DOM) and open-source software I use in and for this video:

My daily driver
Рекомендации по теме
Комментарии
Автор

for the script you can make it much more smaller by using a for loop through array

packages=("pkg1" "pkg2" "pkg3")


# Install each package in the list
for package in "${packages[@]}"; do
sudo pacman -S "$package" --noconfirm
done

echo "Done!"

Hope this helps

ash-lodc