Remove legacy online installer entrypoints, collapse migrations for 4.0, and move setup responsibilities into target-side system, hardware, and user commands.
16 lines
601 B
Plaintext
16 lines
601 B
Plaintext
# Changes require a restart to take effect.
|
|
|
|
# Source /etc/omarchy.conf so omarchy-dev-link (which writes
|
|
# OMARCHY_PATH=<checkout> there) wins over the packaged default. UWSM doesn't
|
|
# source /etc/profile.d/, so this duplicates that logic for the Hyprland
|
|
# session.
|
|
[ -f /etc/omarchy.conf ] && . /etc/omarchy.conf
|
|
export OMARCHY_PATH="${OMARCHY_PATH:-/usr/share/omarchy}"
|
|
export PATH="$OMARCHY_PATH/bin:$PATH:$HOME/.local/bin"
|
|
|
|
# Set default terminal and editor
|
|
source ~/.config/uwsm/default
|
|
|
|
# Activate mise if present on the system
|
|
omarchy-cmd-present mise && eval "$(mise activate bash --shims)"
|