mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
* Get rid of -Sy and -Syy * Get rid of all naked -Sy usage * Don't need a full system update for this * Combine * Does not need a full system update * Need to refresh even just for Omarchy repository * Does not warrant a full system update * No longer need the sudoless pacman runs * We have already added the Omarchy repo before getting to here So fine to just do a straight install
8 lines
284 B
Bash
8 lines
284 B
Bash
echo "Add Omarchy Package Repository"
|
|
|
|
if ! grep -q "omarchy" /etc/pacman.conf; then
|
|
sudo sed -i '/^\[core\]/i [omarchy]\nSigLevel = Optional TrustAll\nServer = https:\/\/pkgs.omarchy.org\/$arch\/\n' /etc/pacman.conf
|
|
sudo systemctl restart systemd-timesyncd
|
|
sudo pacman -Syu
|
|
fi
|