diff options
Diffstat (limited to 'arch/required')
-rwxr-xr-x | arch/required | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/required b/arch/required new file mode 100755 index 0000000..77251fc --- /dev/null +++ b/arch/required @@ -0,0 +1,17 @@ +#!/bin/bash +# run as root +pacman -S --needed - < mainline + +useradd tom +mkdir /home/tom + +mkdir /home/tom/yay +git clone https://aur.archlinux.org/yay-bin.git /home/tom/yay + +chown tom:tom -R /home/tom + +cd /home/tom/yay && sudo -u tom makepkg -si --noconfirm + +sudo -u tom yay -Syu --noconfirm + +sudo -u tom yay -S --needed - < aur |