management/ncp.py replaces the bash CLI's logic; nexus-cli.sh and the new ncp.ps1 are thin wrappers, so Linux keeps its entry point and Windows gains one. psutil handles process and port work on both platforms. install-windows.ps1 registers ncp in the PowerShell profile. The panel VPN switch now resolves its WireGuard connection through NetworkManager instead of a hardcoded name, and the .ps1 ASCII guard globs rather than naming files. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
17 lines
798 B
Bash
17 lines
798 B
Bash
#!/usr/bin/env bash
|
|
# ncp - Linux entry point. The CLI itself is management/ncp.py, which runs
|
|
# unchanged on Windows too (see management/ncp.ps1); this stays a shell script
|
|
# because ~/.bashrc, launch_nexus.sh, bin/restore-linux.sh, controlpanel.py,
|
|
# bin/panel/nexus-popup.py and management/nexus-app.sh all invoke this path.
|
|
#
|
|
# Resolved from this file rather than $HOME/nexus-core, so a clone in a scratch
|
|
# directory drives itself instead of reaching into the real install.
|
|
NEXUS_ROOT="$(cd "$(dirname "$(realpath "$0")")/.." && pwd)"
|
|
|
|
# ncp.py needs psutil (venv), but its backup/restore path delegates to the
|
|
# stdlib-only bin/sync.py and must work before the venv is built.
|
|
PY="$NEXUS_ROOT/Promethean/bin/python3"
|
|
[ -x "$PY" ] || PY=python3
|
|
|
|
exec "$PY" "$NEXUS_ROOT/management/ncp.py" "$@"
|