From 3c47f84a240ec2853e37ecf5c9b8c6c953461658 Mon Sep 17 00:00:00 2001 From: cod378 Date: Sun, 2 Nov 2025 02:55:19 +0000 Subject: [PATCH] refactor: switch from remote repo to local scripts path - Changed repository URL reference from GitHub to local scripts directory (/usr/local/share/proxmenux/scripts) - Fixed spacing in info2 message formatting by adding space after HOLD variable - Simplified script dependencies to use local installation instead of remote fetching --- scripts/utils.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/utils.sh b/scripts/utils.sh index 0c216d2..1a53616 100644 --- a/scripts/utils.sh +++ b/scripts/utils.sh @@ -34,7 +34,7 @@ # ========================================================== # Repository and directory structure -REPO_URL="https://raw.githubusercontent.com/MacRimi/ProxMenux/main" +LOCAL_SCRIPTS="/usr/local/share/proxmenux/scripts" INSTALL_DIR="/usr/local/bin" BASE_DIR="/usr/local/share/proxmenux" CONFIG_FILE="$BASE_DIR/config.json" @@ -133,7 +133,7 @@ msg_info() { # Display info2 message msg_info2() { local msg="$1" - echo -e "${TAB}${BOLD}${YW}${HOLD}${msg}${CL}" + echo -e "${TAB}${BOLD}${YW}${HOLD} ${msg}${CL}" } # Display info message with spinner