Open
Description
this works flawless in i3.
with sway however, only <b>
and <i>
seems to be supported, meanwhile span is rendered as text.
>>> vars(i3.command('rename workspace "i: work" to "<b>b</b><span font_desc=\"file-icons\">\ue926</span>"')[0])
{'ipc_data': {'success': True}, 'success': True, 'error': None}
>>> vars(i3.command('rename workspace "i: work" to "<b>b</b><i>i</i>"')[0])
{'ipc_data': {'success': True}, 'success': True, 'error': None}
>>> vars(i3.command('rename workspace "i: work" to "<span foreground=\"blue\">blue</span>"')[0])
{'ipc_data': {'success': True}, 'success': True, 'error': None}
tried also to put
bindsym $mod+Shift+i workspace <span foreground="blue">blue</span>
in .config/sway/config and the blue blue text is there, so this is ipc related