#!/bin/sh echo " install.sh" echo " comment/uncomment sections to install desired programs." echo " most scripts will assume repo-enable.sh has been run" echo "" echo " press return to begin installation. crtl + c to cancel" read input ##################################################################### sh ./artix/repo-enable.sh sh ./artix/config.sh sh ./artix/devel.sh sh ./artix/gaming.sh sh ./artix/runit-config.sh sh ./artix/wireless.sh sudo sh -c 'pacman -S - < artix/pkgs/base.txt' sudo sh -c 'pacman -S - < artix/pkgs/user.txt' sudo sh -c 'pacman -S - < artix/pkgs/wm.txt' sudo sh -c 'yay -S - < artix/pkgs/aur.txt' #install local git repos, needed for wm.txt sh ~/.local/scripts/install.sh add-repos ~/.local/installers/repos.txt #uncomment appropriate line for cpu type sudo pacman -S amd-ucode #sudo pacman -S intel-ucode ##################################################################### sudo mkinitcpio -P #rebuild kernel sudo grub-mkconfig -o /boot/grub/grub.cfg #update grub echo "installation finished"