mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
24 lines
870 B
Bash
24 lines
870 B
Bash
if [[ -n ${OMARCHY_ONLINE_INSTALL:-} ]]; then
|
|
# Install build tools
|
|
sudo pacman -S --needed --noconfirm base-devel
|
|
|
|
# Configure pacman
|
|
if [[ ${OMARCHY_MIRROR:-} == "edge" ]] ; then
|
|
sudo cp -f ~/.local/share/omarchy/default/pacman/pacman-edge.conf /etc/pacman.conf
|
|
sudo cp -f ~/.local/share/omarchy/default/pacman/mirrorlist-edge /etc/pacman.d/mirrorlist
|
|
else
|
|
sudo cp -f ~/.local/share/omarchy/default/pacman/pacman-stable.conf /etc/pacman.conf
|
|
sudo cp -f ~/.local/share/omarchy/default/pacman/mirrorlist-stable /etc/pacman.d/mirrorlist
|
|
fi
|
|
|
|
sudo pacman-key --recv-keys 40DFB630FF42BCFFB047046CF0134EE680CAC571 --keyserver keys.openpgp.org
|
|
sudo pacman-key --lsign-key 40DFB630FF42BCFFB047046CF0134EE680CAC571
|
|
|
|
sudo pacman -Sy
|
|
sudo pacman -S --noconfirm --needed omarchy-keyring
|
|
|
|
|
|
# Refresh all repos
|
|
sudo pacman -Syu --noconfirm
|
|
fi
|