Files
omarchy/install.sh
Ryan Hughes 6d583028d5 Update path
2025-11-06 10:02:51 -05:00

18 lines
534 B
Bash

#!/bin/bash
# Exit immediately if a command exits with a non-zero status
set -eEo pipefail
# Define Omarchy locations
export OMARCHY_PATH="/usr/share/omarchy"
export OMARCHY_INSTALL="$OMARCHY_PATH/install"
export OMARCHY_INSTALL_LOG_FILE="/var/log/omarchy-install.log"
# Install
source "$OMARCHY_INSTALL/helpers/all.sh"
source "$OMARCHY_INSTALL/preflight/all.sh"
source "$OMARCHY_INSTALL/packaging/all.sh"
source "$OMARCHY_INSTALL/config/all.sh"
source "$OMARCHY_INSTALL/login/all.sh"
source "$OMARCHY_INSTALL/post-install/all.sh"