2023-02-03 04:08:44 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-06-19 20:05:11 -04:00
|
|
|
#
|
|
|
|
# install yay
|
|
|
|
#
|
|
|
|
|
2023-06-15 16:36:30 -04:00
|
|
|
cd &&
|
|
|
|
if ! type "yay" &> /dev/null; then
|
|
|
|
echo "Yay not found, installing..." &&
|
2023-02-04 06:31:22 -05:00
|
|
|
|
2023-06-15 16:36:30 -04:00
|
|
|
if test -d yay; then
|
|
|
|
rm -rf yay
|
|
|
|
fi &&
|
2023-02-04 06:31:22 -05:00
|
|
|
|
2023-02-06 09:56:30 -05:00
|
|
|
git clone https://aur.archlinux.org/yay.git &&
|
|
|
|
cd yay &&
|
|
|
|
makepkg -si --noconfirm &&
|
|
|
|
cd &&
|
|
|
|
rm -rf yay
|
2023-06-15 16:36:30 -04:00
|
|
|
else
|
|
|
|
echo -e "\nYay is already installed, skipping..."
|
|
|
|
fi &&
|
2023-02-03 04:08:44 -05:00
|
|
|
|
2023-06-19 20:05:11 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# install deps
|
|
|
|
#
|
|
|
|
|
2023-06-15 16:36:30 -04:00
|
|
|
echo -e "\nInstalling dependencies..." &&
|
2023-02-03 04:08:44 -05:00
|
|
|
yay -S --needed --noconfirm \
|
2023-06-19 20:05:11 -04:00
|
|
|
alacritty \
|
|
|
|
beautiful-discord-git \
|
2023-02-03 04:08:44 -05:00
|
|
|
btop \
|
|
|
|
byobu \
|
2023-06-18 21:16:12 -04:00
|
|
|
caprine \
|
2023-06-19 20:05:11 -04:00
|
|
|
chromium \
|
2023-06-18 21:16:12 -04:00
|
|
|
discord \
|
2023-06-19 20:05:11 -04:00
|
|
|
firefox-developer-edition \
|
|
|
|
fuzzel \
|
|
|
|
gawk \
|
2023-06-18 21:16:12 -04:00
|
|
|
gimp \
|
2023-06-19 20:05:11 -04:00
|
|
|
lf \
|
|
|
|
light \
|
2023-06-18 21:16:12 -04:00
|
|
|
mako \
|
2023-06-19 20:05:11 -04:00
|
|
|
neovim \
|
|
|
|
nnn \
|
|
|
|
oh-my-zsh-git \
|
|
|
|
otf-font-awesome \
|
2023-06-18 21:16:12 -04:00
|
|
|
pamixer \
|
|
|
|
playerctl \
|
2023-06-19 20:05:11 -04:00
|
|
|
python-pywalfox \
|
2023-06-18 21:16:12 -04:00
|
|
|
pywal-discord-git \
|
2023-06-19 20:05:11 -04:00
|
|
|
river \
|
|
|
|
rsync \
|
|
|
|
sl \
|
|
|
|
spotify-launcher \
|
|
|
|
steam \
|
|
|
|
swaybg \
|
|
|
|
telegram-desktop \
|
|
|
|
thunderbird \
|
2023-06-18 21:16:12 -04:00
|
|
|
wal-telegram-git \
|
2023-06-19 20:05:11 -04:00
|
|
|
waybar \
|
|
|
|
zsh \
|
|
|
|
&&
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# set shell
|
|
|
|
#
|
2023-02-03 04:08:44 -05:00
|
|
|
|
2023-06-15 16:36:30 -04:00
|
|
|
echo "" &&
|
2023-02-03 04:37:44 -05:00
|
|
|
sudo chsh -s /bin/zsh $USER
|