Doors/.scripts/doors/install_min_arch

27 lines
332 B
Text
Raw Normal View History

2023-02-03 04:08:44 -05:00
#!/bin/bash
# Yay
git clone https://aur.archlinux.org/yay.git &&
2023-02-03 04:26:50 -05:00
cd yay &&
makepkg -si --noconfirm &&
cd &&
rm -rf yay &&
2023-02-03 04:08:44 -05:00
# Base/Shell
yay -S --needed --noconfirm \
\
`# Standard`\
rsync \
btop \
neovim \
byobu \
zsh \
nnn \
\
`# Aur`\
nvim-packer-git \
2023-02-03 04:26:50 -05:00
oh-my-zsh-git &&
2023-02-03 04:08:44 -05:00
2023-02-03 04:26:50 -05:00
rsync -avzP .doors/ ./ &&
sudo chsh -s $(which zsh) $USER