You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I was using this project with the Iconic Fonts (Font Awesome 5), I had the space-char rendered incorrectly looking like this.
Apparently, this is related to Pango as mentioned here, but the fix somehow did not work. Anachron/i3blocks#53
However, using a workaround of having a transparent space (or any other char), has the same effect.
I changed https://github.com/mh21/i3-renameworkspaces/blob/master/i3-renameworkspaces.pl#L64
from $newname = join(': ', $num, join(' ', @{$$ws{'windows'}}) || ());
to $newname = join(': ', $num, join('<span foreground=\'#00000001\'> <span>', @{$$ws{'windows'}}) || ());
Please consider adding a comment above this line which mentions this issue/workaround.
Also, a note in the readme file referring to the PangoMarkupFormat which is available, would be helpful.
The text was updated successfully, but these errors were encountered:
When I was using this project with the Iconic Fonts (Font Awesome 5), I had the space-char rendered incorrectly looking like this.
Apparently, this is related to Pango as mentioned here, but the fix somehow did not work.
Anachron/i3blocks#53
However, using a workaround of having a transparent space (or any other char), has the same effect.
I changed https://github.com/mh21/i3-renameworkspaces/blob/master/i3-renameworkspaces.pl#L64
from
$newname = join(': ', $num, join(' ', @{$$ws{'windows'}}) || ());
to
$newname = join(': ', $num, join('<span foreground=\'#00000001\'> <span>', @{$$ws{'windows'}}) || ());
Please consider adding a comment above this line which mentions this issue/workaround.
Also, a note in the readme file referring to the PangoMarkupFormat which is available, would be helpful.
The text was updated successfully, but these errors were encountered: