Doors/scripts/install_arch
2023-06-19 20:05:11 -04:00

72 lines
917 B
Bash
Executable file

#!/bin/bash
#
# install yay
#
cd &&
if ! type "yay" &> /dev/null; then
echo "Yay not found, installing..." &&
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
else
echo -e "\nYay is already installed, skipping..."
fi &&
#
# install deps
#
echo -e "\nInstalling dependencies..." &&
yay -S --needed --noconfirm \
alacritty \
beautiful-discord-git \
btop \
byobu \
caprine \
chromium \
discord \
firefox-developer-edition \
fuzzel \
gawk \
gimp \
lf \
light \
mako \
neovim \
nnn \
oh-my-zsh-git \
otf-font-awesome \
pamixer \
playerctl \
python-pywalfox \
pywal-discord-git \
river \
rsync \
sl \
spotify-launcher \
steam \
swaybg \
telegram-desktop \
thunderbird \
wal-telegram-git \
waybar \
zsh \
&&
#
# set shell
#
echo "" &&
sudo chsh -s /bin/zsh $USER