#!/bin/bash
# delete old yay
rm -r yay/
# install git
sudo pacman -S --noconfirm git base-devel
# download yay
git clone https://aur.archlinux.org/yay.git
# install yay
cd yay && makepkg -si --noconfirm
