mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
12 lines
315 B
Bash
Executable File
12 lines
315 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# 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
|