mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
* Drop Chaotic AUR repo Now that we have the AUR packages we need on the OPR, we don't need this as a default. * Fix escape issue and rename so it will run again
8 lines
395 B
Bash
8 lines
395 B
Bash
echo "Move Omarchy Package Repository after Arch core/extra/multilib and remove AUR"
|
|
|
|
sudo cp /etc/pacman.conf /etc/pacman.conf.bak
|
|
sudo sed -i '/\[omarchy\]/,+2 d' /etc/pacman.conf
|
|
sudo sed -i '/\[chaotic-aur\]/,+2 d' /etc/pacman.conf
|
|
sudo bash -c 'echo -e "\n[omarchy]\nSigLevel = Optional TrustAll\nServer = https://pkgs.omarchy.org/\$arch/" >> /etc/pacman.conf'
|
|
sudo pacman -Syu --noconfirm
|