From bfc130f3c8a1108ce74e334a1d60f25db6f4a2bc Mon Sep 17 00:00:00 2001 From: jarugupj <121142710+jarugupj@users.noreply.github.com> Date: Fri, 12 Jun 2026 19:37:28 +0000 Subject: [PATCH 1/2] Use kernel green for install/uninstall banner Recolor the HYPEMAN ASCII banner from purple to the kernel brand green (#81b300). Renames the banner color variable to KERNEL_GREEN so the intent is explicit and keeps install.sh and uninstall.sh in sync. Co-Authored-By: Claude Opus 4.7 --- scripts/install.sh | 4 ++-- scripts/uninstall.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index bc293e55..f7bb6b20 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -27,7 +27,7 @@ SERVICE_NAME="hypeman" RED='\033[38;2;255;110;110m' GREEN='\033[38;2;92;190;83m' YELLOW='\033[0;33m' -PURPLE='\033[38;2;172;134;249m' +KERNEL_GREEN='\033[38;2;129;179;0m' NC='\033[0m' # No Color info() { echo -e "${GREEN}[INFO]${NC} $1"; } @@ -793,7 +793,7 @@ fi # ============================================================================= echo "" -echo -e "${PURPLE}" +echo -e "${KERNEL_GREEN}" cat << 'EOF' ██╗ ██╗ ██╗ ██╗ ██████╗ ███████╗ ███╗ ███╗ █████╗ ███╗ ██╗ ██║ ██║ ╚██╗ ██╔╝ ██╔══██╗ ██╔════╝ ████╗ ████║ ██╔══██╗ ████╗ ██║ diff --git a/scripts/uninstall.sh b/scripts/uninstall.sh index e910155e..fd34934a 100755 --- a/scripts/uninstall.sh +++ b/scripts/uninstall.sh @@ -19,7 +19,7 @@ SERVICE_USER="hypeman" RED='\033[38;2;255;110;110m' GREEN='\033[38;2;92;190;83m' YELLOW='\033[0;33m' -PURPLE='\033[38;2;172;134;249m' +KERNEL_GREEN='\033[38;2;129;179;0m' NC='\033[0m' # No Color info() { echo -e "${GREEN}[INFO]${NC} $1"; } @@ -208,7 +208,7 @@ fi # ============================================================================= echo "" -echo -e "${PURPLE}" +echo -e "${KERNEL_GREEN}" cat << 'EOF' ██╗ ██╗ ██╗ ██╗ ██████╗ ███████╗ ███╗ ███╗ █████╗ ███╗ ██╗ ██║ ██║ ╚██╗ ██╔╝ ██╔══██╗ ██╔════╝ ████╗ ████║ ██╔══██╗ ████╗ ██║ From 6ca279473f3dfc8dcb2bccb964c04f58a4ac4301 Mon Sep 17 00:00:00 2001 From: jarugupj <121142710+jarugupj@users.noreply.github.com> Date: Fri, 12 Jun 2026 19:47:05 +0000 Subject: [PATCH 2/2] Remove orphaned PURPLE color var from build-from-source.sh The variable was defined but never referenced; no banner is printed from this script. Removing it leaves no stray PURPLE definitions in the repo. Co-Authored-By: Claude Opus 4.7 --- scripts/build-from-source.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/build-from-source.sh b/scripts/build-from-source.sh index 33e573eb..88f45cdd 100755 --- a/scripts/build-from-source.sh +++ b/scripts/build-from-source.sh @@ -19,7 +19,6 @@ UFFD_PAGER_BINARY_NAME="hypeman-uffd-pager" RED='\033[38;2;255;110;110m' GREEN='\033[38;2;92;190;83m' YELLOW='\033[0;33m' -PURPLE='\033[38;2;172;134;249m' NC='\033[0m' # No Color info() { echo -e "${GREEN}[INFO]${NC} $1"; }