From 8b30dad3444aadf1dcb5d1c2d07080f57b367e7c Mon Sep 17 00:00:00 2001 From: beech Date: Thu, 4 Jul 2024 03:11:48 -0500 Subject: [PATCH] Added AUR setup --- aur.sh | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 aur.sh diff --git a/aur.sh b/aur.sh new file mode 100644 index 0000000..aa8b2b0 --- /dev/null +++ b/aur.sh @@ -0,0 +1,32 @@ +echo +echo "SETTING UP AUR SOFTWARE" +echo + +echo "Please enter username:" +read username + +cd "${HOME}" + +echo "CLONING: YAY" +git clone "https://aur.archlinux.org/yay.git" + + +PKGS=( + + # Browsers ------------------------------------------------------ + + 'floorp' # Floorp Browser + + +) + +cd ${HOME}/yay +makepkg -si + +for PKG in "${PKGS[@]}"; do + yay -S --noconfirm $PKG +done + +echo +echo "Done!" +echo \ No newline at end of file