9 lines
229 B
Bash
9 lines
229 B
Bash
# Set mirror to single geo setup
|
|
echo 'Server = https://geo.mirror.pkgbuild.com/$repo/os/$arch' |
|
|
sudo tee /etc/pacman.d/mirrorlist >/dev/null
|
|
|
|
# Update indexes if online
|
|
if ping -c5 omarchy.org &>/dev/null; then
|
|
yay -Syy
|
|
fi
|