arch-install/install_usr.sh

29 lines
682 B
Bash

echo "Installing yay"
mkdir opt
pushd opt
git clone https://aur.archlinux.org/yay.git
chown -R drew .
pushd yay
su -c "makepkg -s" drew
pacman -U *.tar.zst
popd
popd
echo "Installing plymouth theme"
su -c "yay -S plymouth-theme-deus-ex-git" drew
plymouth-set-default-theme -R deus_ex
echo "Installing SDDM theme"
yay -S sddm-sugar-dark
echo "Pulling home git config"
$CONFIG='/usr/bin/git --git-dir=/home/drew/.cfg/ --work-tree=/home/drew'
git config --global init.defaultBranch main
mkdir ~/.cfg
$CONFIG init
$CONFIG remote add origin https://gitlab.com/dgalbraith33/dotfiles.git
$CONFIG pull origin main
$CONFIG submodule update --init
echo "*" > ~/.gitignore