summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
author1jehuang <[email protected]>2025-12-20 18:35:26 -0800
committer1jehuang <[email protected]>2025-12-20 18:35:26 -0800
commitfe31ae07808753a3b29b03e71aa768d37b9ad05e (patch)
tree86261bc21c1eee626dadf824b4720f05f493c657 /src
parent8dc6dbb906c7cde13f8956a98a4c57cdb2268d7b (diff)
Remove strikethrough rendering
Diffstat (limited to 'src')
-rw-r--r--src/main.rs10
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
};