diff options
| author | ryukamish <[email protected]> | 2026-07-02 23:31:58 +0530 |
|---|---|---|
| committer | ryukamish <[email protected]> | 2026-07-02 23:31:58 +0530 |
| commit | 394d06db435bd493351121f1bd9a16da0f549241 (patch) | |
| tree | d8393fdc411aa3cd78185b2144d481d3d60ae992 /src | |
| parent | affa57863899f1b8afb7e656c76de4a801e0e8e4 (diff) | |
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 6972b83..25242b6 100644 --- 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 |
