From 2dd8caaaea1438b841ecc0fc5cf934a98cfc7b99 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Wed, 12 Jan 2022 12:25:18 +0100 Subject: [PATCH] i3-companion: fix monospace use when displaying workspace info --- bin/i3-companion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/i3-companion b/bin/i3-companion index 5d87143..b9bd548 100755 --- a/bin/i3-companion +++ b/bin/i3-companion @@ -621,7 +621,7 @@ async def workspace_info(i3, event): else: first = "├─" others = "│ " - content = format(child).replace("\n", f"\n{others}") + content = format(child).replace("\n", f"\n{others}") children.append(f"{first}{content}") children.insert(0, root) return "\n".join(children)