mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 20:29:24 +00:00
12 lines
219 B
Bash
12 lines
219 B
Bash
sudo pacman -S --needed --noconfirm base-devel
|
|
|
|
if ! command -v yay &>/dev/null; then
|
|
cd /tmp
|
|
git clone https://aur.archlinux.org/yay-bin.git
|
|
cd yay-bin
|
|
makepkg -si --noconfirm
|
|
cd -
|
|
rm -rf yay-bin
|
|
cd ~
|
|
fi
|