2025-07-16 14:19:03 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
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
|
2025-07-07 10:28:44 -07:00
|
|
|
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
|
2025-07-07 10:28:44 -07:00
|
|
|
cd -
|
2025-06-02 10:34:34 +02:00
|
|
|
rm -rf yay-bin
|
2025-07-07 10:28:44 -07:00
|
|
|
cd ~
|
2025-07-14 20:39:08 -07:00
|
|
|
|
|
|
|
# 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
|