blob: b7dbee00c6f257c6d286804ab65db8a2b8fa9b5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/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
paru -Rns $(paru -Qqdt)
sudo systemctl enable paccache.timer
|