Separate pacman setup from aur and make aur optional

This commit is contained in:
David Heinemeier Hansson
2025-08-24 17:20:13 +02:00
parent 09a90e3cf2
commit 664fb7c51a
3 changed files with 22 additions and 20 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/bash
# Install build tools
sudo pacman -Sy --needed --noconfirm base-devel jq
# 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\nVerbosePkgLists' /etc/pacman.conf
fi