Files
zshrc/arch.setup.sh
2022-09-13 23:55:07 -04:00

12 lines
184 B
Bash

#!/usr/bin/env bash
# Stop on error
set -e
# Install yay
sudo pacman -S --needed git base-devel
git clone https://aur.archlinux.org/yay-bin.git /tmp/yay
cd /tmp/yay
makepkg -si
cd -