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

35 lines
957 B
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
#####################################################################
./artix/repo-enable.sh
./artix/config.sh
./artix/devel.sh
./artix/gaming.sh
./artix/runit-config.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'
#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."