mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-07 12:37:45 +00:00
* First swing at t2 support * Remove unnecessary enables * Trim up * Trim * Need to use official mirror until we have our own setup * Use GitHub mirror for now --------- Co-authored-by: David Heinemeier Hansson <david@hey.com>
13 lines
407 B
Bash
13 lines
407 B
Bash
# Configure pacman
|
|
sudo cp -f ~/.local/share/omarchy/default/pacman/pacman.conf /etc/pacman.conf
|
|
sudo cp -f ~/.local/share/omarchy/default/pacman/mirrorlist /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
|