1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-10 19:29:17 +00:00

Add System Status Dashboard

This commit is contained in:
Tw93
2025-11-21 17:58:31 +08:00
parent b9760573bc
commit 45d31e880c
13 changed files with 2152 additions and 7 deletions

Binary file not shown.

BIN
bin/status-go Executable file

Binary file not shown.

13
bin/status.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
# Entry point for the Go-based system status panel bundled with Mole.
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
GO_BIN="$SCRIPT_DIR/status-go"
if [[ -x "$GO_BIN" ]]; then
exec "$GO_BIN" "$@"
fi
echo "Bundled status binary not found. Please reinstall Mole or run mo update to restore it." >&2
exit 1