summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorryukamish <[email protected]>2026-04-12 00:01:50 +0530
committerryukamish <[email protected]>2026-04-12 00:01:50 +0530
commitc247045360339aafc8cefde3c43ccc8af15adabc (patch)
tree83c2a45ef21e65578cb4541135693c674174bdb1 /src
parent06240ac1f6b302f67c3c451dc5cba3db9a6fb659 (diff)
add: grey color to workspace number
Diffstat (limited to 'src')
-rw-r--r--src/main.rs2
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