#!/bin/bash set -e U=tom pacman -S --needed - < mainline useradd -m $U passwd $U mkdir /home/$U/yay git clone https://aur.archlinux.org/yay-bin.git /home/$U/yay chown $U:$U -R /home/$U echo "$U ALL=(ALL) ALL" >> /etc/sudoers cd /home/$U/yay && sudo -u $U makepkg -si --noconfirm sudo -u $U yay -Syu --noconfirm