diff options
| author | 1jehuang <[email protected]> | 2025-12-20 18:35:26 -0800 |
|---|---|---|
| committer | 1jehuang <[email protected]> | 2025-12-20 18:35:26 -0800 |
| commit | fe31ae07808753a3b29b03e71aa768d37b9ad05e (patch) | |
| tree | 86261bc21c1eee626dadf824b4720f05f493c657 /src | |
| parent | 8dc6dbb906c7cde13f8956a98a4c57cdb2268d7b (diff) | |
Remove strikethrough rendering
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/main.rs b/src/main.rs index 1bbcba3..5d28f90 100644 --- a/src/main.rs +++ b/src/main.rs @@ -129,15 +129,7 @@ fn output_status(workspaces: &[Workspace], windows: &[Window]) { "|" }; - let strike = if ws.is_active { - " strikethrough='true'" - } else { - "" - }; - output.push_str(&format!( - "<span color='{}'{}>{}</span>", - color, strike, bar - )); + output.push_str(&format!("<span color='{}'>{}</span>", color, bar)); } output }; |
