mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-07-02 14:24:21 +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:
|
||||
first = "├─"
|
||||
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.insert(0, root)
|
||||
return "\n".join(children)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue