commit c247045360339aafc8cefde3c43ccc8af15adabc parent 06240ac1f6b302f67c3c451dc5cba3db9a6fb659 Author: ryukamish <[email protected]> Date: Sun, 12 Apr 2026 00:01:50 +0530 add: grey color to workspace number Diffstat:
| M | src/main.rs | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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