summaryrefslogtreecommitdiff
path: root/yay.sh
diff options
context:
space:
mode:
Diffstat (limited to 'yay.sh')
-rwxr-xr-xyay.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/yay.sh b/yay.sh
new file mode 100755
index 0000000..150b4a9
--- /dev/null
+++ b/yay.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+cwd=$(pwd)
+sudo pacman -S --noconfirm git
+git clone https://aur.archlinux.org/yay.git /tmp/yay
+git config --global user.email "benjamin@chausse.xyz"
+git config --global user.name "Benjamin Chausse"
+cd /tmp/yay
+makepkg -si --noconfirm
+cd "$cwd"
+
+