From f7366898a42e1d97732f7199602b964368488611 Mon Sep 17 00:00:00 2001 From: candifloss Date: Thu, 16 Jul 2026 13:33:19 +0530 Subject: [PATCH] Temporary fix for bag color erasure --- src/indicators/pwd.rs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/indicators/pwd.rs b/src/indicators/pwd.rs index 6a667bf..20a163a 100644 --- a/src/indicators/pwd.rs +++ b/src/indicators/pwd.rs @@ -90,11 +90,19 @@ pub fn pwd( REPO_COL.paint(repo_name) // In the root dir of the repo } else { // In a subdir inside the repo - format!( + /*format!( "{}{}{}", REPO_COL.paint(repo_name), // Repo name MAIN_COL.paint(" \u{F02A2} "), // Separator PATH_COL.italic().paint(path) // Sub-directory + )*/ + format!( + "\x1b[38;2;55;120;130m{}\ + \x1b[38;2;178;98;44m \u{F02A2} \ + \x1b[3;38;2;82;82;82m{}\ + \x1b[39;23m", + repo_name, + path ) .into() };