mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-07-06 08:14:20 +02:00
i3-companion: fix monospace use when displaying workspace info
This commit is contained in:
parent
9e62ef11fb
commit
2dd8caaaea
1 changed files with 1 additions and 1 deletions
|
@ -621,7 +621,7 @@ async def workspace_info(i3, event):
|
||||||
else:
|
else:
|
||||||
first = "├─"
|
first = "├─"
|
||||||
others = "│ "
|
others = "│ "
|
||||||
content = format(child).replace("\n", f"\n{others}")
|
content = format(child).replace("\n", f"\n<tt>{others}</tt>")
|
||||||
children.append(f"<tt>{first}</tt>{content}")
|
children.append(f"<tt>{first}</tt>{content}")
|
||||||
children.insert(0, root)
|
children.insert(0, root)
|
||||||
return "\n".join(children)
|
return "\n".join(children)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue