mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
13 lines
459 B
Bash
13 lines
459 B
Bash
# Configure pacman
|
|
sudo cp -f ~/.local/share/omarchy/default/pacman/pacman-${OMARCHY_MIRROR:-stable}.conf /etc/pacman.conf
|
|
sudo cp -f ~/.local/share/omarchy/default/pacman/mirrorlist-${OMARCHY_MIRROR:-stable} /etc/pacman.d/mirrorlist
|
|
|
|
if lspci -nn | grep -q "106b:180[12]"; then
|
|
cat <<EOF | sudo tee -a /etc/pacman.conf >/dev/null
|
|
|
|
[arch-mact2]
|
|
Server = https://github.com/NoaHimesaka1873/arch-mact2-mirror/releases/download/release
|
|
SigLevel = Never
|
|
EOF
|
|
fi
|