should work?

This commit is contained in:
2026-03-07 20:45:22 +00:00
parent 3f4e5f4440
commit 40ff012dbe
5 changed files with 264 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
#!/usr/bin/env bash
#
# Master Omarchy Setup Script
# Runs all setup scripts in dependency order
set -e
echo "========================================"
echo " Omarchy Fresh Install - Starting..."
echo "========================================"
# 1. Add packages (must be first)
echo "[1/4] Installing packages..."
./omarchy_start.sh
# 2. Set up symbolic links
echo ""
echo "[2/4] Setting up symbolic links..."
./set_up_sym_links.sh
# 3. Mount NAS (required for restore scripts)
echo ""
echo "[3/4] Setting up NAS mount..."
./set_up_nas_mount.sh
# 4. Restore backups (requires NAS mount)
echo ""
echo "[4/4] Restoring SSH/GPG keys and Git data..."
echo " - Restoring SSH and GPG keys..."
./restore_ssh_gpg.sh
echo " - Restoring Git backups..."
./restore_git_backup.sh
echo ""
echo "========================================"
echo " Omarchy Setup Complete!"
echo "========================================"