Doors/.scripts/doors/install_min_arch
2023-02-06 09:56:30 -05:00

35 lines
432 B
Bash
Executable file

#!/bin/bash
cd
if test -d yay; then
rm -rf yay
fi
if ! type "yay" &> /dev/null; then
git clone https://aur.archlinux.org/yay.git &&
cd yay &&
makepkg -si --noconfirm &&
cd &&
rm -rf yay
fi
# Base/Shell
yay -S --needed --noconfirm \
\
`# Standard`\
rsync \
sl \
btop \
neovim \
byobu \
zsh \
lf \
nnn \
\
`# Aur`\
stpv-git \
nvim-packer-git \
oh-my-zsh-git &&
sudo chsh -s /bin/zsh $USER