Files
arch-system-hyprland/03-user/run.sh
T
2026-07-02 15:56:21 +02:00

19 lines
546 B
Bash
Executable File

#!/usr/bin/env bash
# User-level provisioning. Run as your normal user (NOT root), after the system
# layer has finished and you've rebooted into the installed system:
# ./run.sh
set -euo pipefail
cd "$(dirname "$0")"
source ../02-system/lib.sh
REPO_ROOT="$(cd .. && pwd)"
[ "$(id -u)" -ne 0 ] || die "run as your normal user, not root"
for step in [0-9][0-9]-*.sh; do
info "--- $step ---"
source "$step"
done
info "user provisioning done."
[ -s "$HOME/aur-failed.log" ] && echo "NOTE: some AUR packages failed — see ~/aur-failed.log"