mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-13 22:02:34 +00:00
10 lines
206 B
Bash
Executable File
10 lines
206 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if ! command -v yay >/dev/null 2>&1; then
|
|
sudo pacman -S --noconfirm --needed git base-devel
|
|
git clone https://aur.archlinux.org/yay.git ~/yay
|
|
cd ~/yay
|
|
makepkg -si
|
|
rm -rf ~/yay
|
|
fi
|