diff options
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 642b2dc..0bd2af9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -141,7 +141,7 @@ fn output_status(workspaces: &[Workspace], windows: &[Window]) { // Always show the workspace number on the left if ws.is_focused { - output.push_str(&format!("{} ", ws.idx)); + output.push_str(&format!("<span color='#cccccc'>{}</span> ", ws.idx)); } // Show workspace name only when focused |
