summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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
};