#!/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 \ alsa-utils \ beautiful-discord-git \ bluez \ btop \ byobu \ caprine \ chromium \ discord \ fakeroot \ firefox-developer-edition \ fuzzel \ gawk \ gimp \ grim \ i3bar-river \ i3status-rust \ lf \ light \ mako \ neovim \ nnn \ oh-my-zsh-git \ otf-font-awesome \ pamixer \ playerctl \ powerline-fonts \ pulseaudio \ python-pywalfox \ pywal-discord-git \ river \ rsync \ sl \ slurp \ spotify-launcher \ steam \ swaybg \ telegram-desktop \ thunderbird \ ttf-font-awesome \ upower \ wal-telegram-git \ wl-clipboard \ zsh \ && # # set shell # echo "" && sudo chsh -s /bin/zsh $USER