32 lines
351 B
Bash
Executable file
32 lines
351 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cd
|
|
|
|
# Yay
|
|
if test -d yay; then
|
|
rm -rf yay
|
|
fi
|
|
|
|
git clone https://aur.archlinux.org/yay.git &&
|
|
cd yay &&
|
|
makepkg -si --noconfirm &&
|
|
cd &&
|
|
rm -rf yay &&
|
|
|
|
# Base/Shell
|
|
yay -S --needed --noconfirm \
|
|
\
|
|
`# Standard`\
|
|
rsync \
|
|
sl \
|
|
btop \
|
|
neovim \
|
|
byobu \
|
|
zsh \
|
|
nnn \
|
|
\
|
|
`# Aur`\
|
|
nvim-packer-git \
|
|
oh-my-zsh-git &&
|
|
|
|
sudo chsh -s /bin/zsh $USER
|