mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-06 12:39:35 +02:00
Remove legacy online installer entrypoints, collapse migrations for 4.0, and move setup responsibilities into target-side system, hardware, and user commands.
15 lines
539 B
Plaintext
15 lines
539 B
Plaintext
# Editor used by CLI
|
|
export SUDO_EDITOR="$EDITOR"
|
|
export BAT_THEME=ansi
|
|
|
|
# Color man pages with bat
|
|
export MANROFFOPT="-c"
|
|
export MANPAGER="sh -c 'col -bx | bat -l man -p'"
|
|
|
|
# Duplicated from .config/uwsm/env so SSH/non-login shells also see the
|
|
# override. /etc/omarchy.conf wins (omarchy-dev-link writes it); otherwise
|
|
# the packaged runtime under /usr/share/omarchy is used.
|
|
[ -f /etc/omarchy.conf ] && . /etc/omarchy.conf
|
|
export OMARCHY_PATH="${OMARCHY_PATH:-/usr/share/omarchy}"
|
|
export PATH="$OMARCHY_PATH/bin:$PATH:$HOME/.local/bin"
|