dotfiles-old/.local/installers/artix-install.sh

37 lines
1.1 KiB
Bash
Executable File

#!/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 #enables arch repos, lib32 multilib, community, and prompts for universe repo
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'
sh ./artix/devel.sh
sh ./artix/gaming.sh
sh ./artix/runit-config.sh
sh ./artix/wireless.sh
sh ./artix/config.sh
#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"