style: use ◉ symbol for token count in timing footer

Changes '227tk | 48% ctx' to '227 ◉ | 48%' for a cleaner look.
This commit is contained in:
Dhanji R. Prasanna
2025-12-25 18:40:17 +11:00
parent d09c80180e
commit 258f9878ff
2 changed files with 3 additions and 3 deletions

View File

@@ -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;