Add color and pacman animation to pacman installer

Closes #174, #129

Co-authored-by: @rockorager
This commit is contained in:
David Heinemeier Hansson
2025-07-14 20:39:08 -07:00
parent ad6c1f0df1
commit 1dd64a814a
2 changed files with 6 additions and 0 deletions

View File

@ -8,4 +8,7 @@ if ! command -v yay &>/dev/null; then
cd -
rm -rf yay-bin
cd ~
# Add fun and color to the pacman installer
sed -i '/^\[options\]/a Color\nILoveCandy' /etc/pacman.conf
fi

3
migrations/1752543801.sh Normal file
View File

@ -0,0 +1,3 @@
echo "Add color and animation to pacman installs"
grep -q '^Color' /etc/pacman.conf || sudo sed -i '/^\[options\]/a Color' /etc/pacman.conf
grep -q '^ILoveCandy' /etc/pacman.conf || sudo sed -i '/^\[options\]/a ILoveCandy' /etc/pacman.conf