From 258f9878fff6ae7f8eb2aacb0723c4c52ea9571f Mon Sep 17 00:00:00 2001 From: "Dhanji R. Prasanna" Date: Thu, 25 Dec 2025 18:40:17 +1100 Subject: [PATCH] =?UTF-8?q?style:=20use=20=E2=97=89=20symbol=20for=20token?= =?UTF-8?q?=20count=20in=20timing=20footer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changes '227tk | 48% ctx' to '227 ◉ | 48%' for a cleaner look. --- crates/g3-cli/src/ui_writer_impl.rs | 2 +- crates/g3-core/src/lib.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/g3-cli/src/ui_writer_impl.rs b/crates/g3-cli/src/ui_writer_impl.rs index d7f6e2e..eabbab3 100644 --- a/crates/g3-cli/src/ui_writer_impl.rs +++ b/crates/g3-cli/src/ui_writer_impl.rs @@ -251,7 +251,7 @@ impl UiWriter for ConsoleUiWriter { "" }; - println!("└─ ⚡️ {}{}\x1b[0m \x1b[2m{}tk | {:.0}% ctx\x1b[0m", color_code, duration_str, tokens_delta, context_percentage); + println!("└─ ⚡️ {}{}\x1b[0m \x1b[2m{} ◉ | {:.0}%\x1b[0m", color_code, duration_str, tokens_delta, context_percentage); println!(); // Clear the stored tool info *self.current_tool_name.lock().unwrap() = None; diff --git a/crates/g3-core/src/lib.rs b/crates/g3-core/src/lib.rs index 5f4f2df..7db96dd 100644 --- a/crates/g3-core/src/lib.rs +++ b/crates/g3-core/src/lib.rs @@ -6583,9 +6583,9 @@ impl Agent { // Add token usage info if available (dimmed) if let Some(tokens) = turn_tokens { - format!("{} \x1b[2m{}tk | {:.0}% ctx\x1b[0m", timing, tokens, context_percentage) + format!("{} \x1b[2m{} ◉ | {:.0}%\x1b[0m", timing, tokens, context_percentage) } else { - format!("{} \x1b[2m{:.0}% ctx\x1b[0m", timing, context_percentage) + format!("{} \x1b[2m{:.0}%\x1b[0m", timing, context_percentage) } } }