From da3db10d03179aaf21c355f6be8836e395585eb7 Mon Sep 17 00:00:00 2001 From: Menno van Leeuwen Date: Mon, 10 Mar 2025 19:23:08 +0100 Subject: [PATCH] feat: enhance dotfiles status output with color coding for unpushed commits --- 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 fc88199..c2a65fd 100755 --- a/bin/actions/hello.py +++ b/bin/actions/hello.py @@ -115,7 +115,7 @@ def get_condensed_status(): 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") + status_parts.append(f"{COLORS['yellow']}[!] You have {dotfiles_status['unpushed']} commit(s) to push{COLORS['reset']}") else: status_parts.append("Unable to check dotfiles status")