Skip to content

Instantly share code, notes, and snippets.

@kaubu
Created September 4, 2021 01:05
Show Gist options
  • Save kaubu/1be1f7bfffe0b0b6081ec409b737741b to your computer and use it in GitHub Desktop.
Save kaubu/1be1f7bfffe0b0b6081ec409b737741b to your computer and use it in GitHub Desktop.
Install yay on Arch
#!/bin/bash
# Install yay on Arch
echo "Current username: "
read username
sudo pacman -S base-devel git
cd /opt
sudo git clone https://aur.archlinux.org/yay.git
sudo chown -R $username:users ./yay
cd yay
makepkg -si
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment