blob: 2b93f468e8d920637694c1e5ec268db96498ad93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
pacman -S --needed base-devel git
pushd aur.archlinux.org/paru
git pull
makepkg -si
popd
paru -S $(<all)
sudo reflector --country 'Austria' --latest 10 --sort rate --save /etc/pacman.d/mirrorlist
sudo systemctl enable --now reflector.timer
|