mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-07 04:20:27 +00:00
12 lines
365 B
Bash
12 lines
365 B
Bash
if [[ -n ${OMARCHY_ONLINE_INSTALL:-} ]]; then
|
|
# Install build tools
|
|
sudo pacman -S --needed --noconfirm base-devel
|
|
|
|
# Configure pacman
|
|
sudo cp -f ~/.local/share/omarchy/default/pacman/pacman.conf /etc/pacman.conf
|
|
sudo cp -f ~/.local/share/omarchy/default/pacman/mirrorlist /etc/pacman.d/mirrorlist
|
|
|
|
# Refresh all repos
|
|
sudo pacman -Syu --noconfirm
|
|
fi
|