From dbcab30d6f89b38936d16e8836c87193d6be2c62 Mon Sep 17 00:00:00 2001 From: Menno van Leeuwen Date: Mon, 10 Mar 2025 19:22:37 +0100 Subject: [PATCH] feat: update commit hash display formatting in hello.py for improved visibility --- bin/actions/hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/actions/hello.py b/bin/actions/hello.py index 546649b..fc88199 100755 --- a/bin/actions/hello.py +++ b/bin/actions/hello.py @@ -112,7 +112,7 @@ def get_condensed_status(): status_parts.append(f"{COLORS['green']}[{dotfiles_status['staged']}] staged{COLORS['reset']}") if dotfiles_status['commit_hash']: - status_parts.append(f"[{COLORS['blue']}{dotfiles_status['commit_hash']}{COLORS['reset']}]") + status_parts.append(f"{COLORS['white']}[{COLORS['blue']}{dotfiles_status['commit_hash']}{COLORS['white']}]{COLORS['reset']}") if dotfiles_status['unpushed'] > 0: status_parts.append(f"[!] You have {dotfiles_status['unpushed']} commit(s) to push")