Include VerbosePkgLists for better pacman -Syu (#1003)

* Include VerbosePkgLists for better pacman -Syu

* Add migration for the verbose package lists

* Amend comment

---------

Co-authored-by: David Heinemeier Hansson <david@hey.com>
This commit is contained in:
oricol 2025-08-23 00:43:12 -05:00 committed by GitHub
parent b2a2d0fde3
commit cc4d41bdaa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -36,7 +36,7 @@ if ! command -v yay &>/dev/null; then
cd ~
fi
# Add fun and color to the pacman installer
# Add fun and color and verbosity to the pacman installer
if ! grep -q "ILoveCandy" /etc/pacman.conf; then
sudo sed -i '/^\[options\]/a Color\nILoveCandy' /etc/pacman.conf
sudo sed -i '/^\[options\]/a Color\nILoveCandy\nVerbosePkgLists' /etc/pacman.conf
fi

3
migrations/1755920552.sh Normal file
View File

@ -0,0 +1,3 @@
echo "Use verbose package lists for pacman"
sudo sed -i '/^ILoveCandy$/a VerbosePkgLists' /etc/pacman.conf