Doors/scripts/install_arch
2023-12-30 22:52:15 -05:00

83 lines
1.1 KiB
Bash
Executable file

#!/bin/bash
# Full (probably) setup for arch
set -e
# 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 \
alsa-utils \
arandr \
awesome \
beautiful-discord-git \
bluez \
btop \
byobu \
caprine \
chromium \
discord \
firefox-developer-edition \
gimp \
lf \
light \
maim \
man-db \
man-pages \
mosh \
mpd \
neovim \
nitrogen \
nnn \
oh-my-zsh-git \
otf-font-awesome \
picom \
playerctl \
polkit-gnome \
powerline-fonts \
python-pywal \
python-pywalfox \
pywal-discord-git \
redshift \
rsync \
sl \
slurp \
spotify-launcher \
steam \
sxiv \
telegram-desktop \
thunderbird \
ttf-font-awesome \
unclutter \
unrar \
upower \
wal-telegram-git \
wget \
xclip \
xorg-xrandr \
xorg-server \
xorg-xinit \
zsh \
# Set shell
echo ""
sudo chsh -s /bin/zsh $USER