diff options
| author | 1jehuang <[email protected]> | 2025-12-20 17:19:28 -0800 |
|---|---|---|
| committer | 1jehuang <[email protected]> | 2025-12-20 17:19:28 -0800 |
| commit | 8dc6dbb906c7cde13f8956a98a4c57cdb2268d7b (patch) | |
| tree | a23766240a3477f919ef6ed4b6a95d0b2693a679 | |
| parent | aae742a3f77c7370ab17e6d8b099f1faefaf7e2d (diff) | |
Fix JSON output for strikethrough
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index fcdf1e2..1bbcba3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -130,7 +130,7 @@ fn output_status(workspaces: &[Workspace], windows: &[Window]) { }; let strike = if ws.is_active { - " strikethrough=\"true\"" + " strikethrough='true'" } else { "" }; |
