mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-02 20:28:19 +02:00
18 lines
624 B
Bash
18 lines
624 B
Bash
if [[ -n ${OMARCHY_ONLINE_INSTALL:-} ]]; then
|
|
# Install build tools
|
|
omarchy-pkg-add base-devel
|
|
|
|
# Configure pacman
|
|
sudo cp -f ~/.local/share/omarchy/default/pacman/pacman-${OMARCHY_MIRROR:-stable}.conf /etc/pacman.conf
|
|
sudo cp -f ~/.local/share/omarchy/default/pacman/mirrorlist-${OMARCHY_MIRROR:-stable} /etc/pacman.d/mirrorlist
|
|
|
|
sudo pacman-key --recv-keys 40DFB630FF42BCFFB047046CF0134EE680CAC571 --keyserver keys.openpgp.org
|
|
sudo pacman-key --lsign-key 40DFB630FF42BCFFB047046CF0134EE680CAC571
|
|
|
|
sudo pacman -Sy
|
|
omarchy-pkg-add omarchy-keyring
|
|
|
|
# Refresh all repos
|
|
sudo pacman -Syyuu --noconfirm
|
|
fi
|