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
|