2025-08-24 17:20:13 +02:00

10 lines
281 B
Bash

#!/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