commit 394d06db435bd493351121f1bd9a16da0f549241
parent affa57863899f1b8afb7e656c76de4a801e0e8e4
Author: ryukamish <[email protected]>
Date: Thu, 2 Jul 2026 23:31:58 +0530
chore: color change
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main.rs b/src/main.rs
@@ -135,13 +135,13 @@ fn output_status(workspaces: &[Workspace], windows: &[Window]) {
let ws_output = if win_count == 0 {
// Empty but focused - just show a dot, no name
// "<span color='#888888'>ยท</span>".to_string()
- format!("{} <span color='#b8a9e9'>.</span>", ws.idx)
+ format!("{} <span color='#cccccc'>.</span>", ws.idx)
} else {
let mut output = String::new();
// Always show the workspace number on the left
if ws.is_focused {
- output.push_str(&format!("<span color='#b8a9e9'>{}</span> ", ws.idx));
+ output.push_str(&format!("<span color='#cccccc'>{}</span> ", ws.idx));
}
// Show workspace name only when focused