Files
omarchy/install/1-yay.sh

15 lines
333 B
Bash
Raw Normal View History

2025-06-02 09:41:24 +02:00
sudo pacman -S --needed --noconfirm base-devel
2025-06-02 10:34:34 +02:00
if ! command -v yay &>/dev/null; then
cd /tmp
2025-06-02 10:34:34 +02:00
git clone https://aur.archlinux.org/yay-bin.git
cd yay-bin
makepkg -si --noconfirm
cd -
2025-06-02 10:34:34 +02:00
rm -rf yay-bin
cd ~
# Add fun and color to the pacman installer
2025-07-15 17:31:36 -07:00
sudo sed -i '/^\[options\]/a Color\nILoveCandy' /etc/pacman.conf
2025-06-02 10:34:34 +02:00
fi