12 lines
No EOL
416 B
Bash
12 lines
No EOL
416 B
Bash
super_apply() {
|
|
pacman -Syyu --noconfirm
|
|
pacman -S --needed --noconfirm sudo reflector
|
|
if ! grep -q "Reflector" /etc/pacman.d/mirrorlist; then
|
|
cp /etc/pacman.d/mirrorlist /etc/pacman.d/mirrorlist.bak
|
|
reflector -c NL -f 10 --threads 4 --save /etc/pacman.d/mirrorlist
|
|
else
|
|
echo "err: reflector already executed -- skipping..."
|
|
fi
|
|
|
|
cp files/pacman.conf /etc/pacman.conf
|
|
} |