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

36 lines
1.1 KiB
Bash
Raw Normal View History

2022-03-10 03:42:22 +00:00
#!/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
2022-03-10 03:42:22 +00:00
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
2022-03-10 03:42:22 +00:00
#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"