Nerd font doesn't render \u200a width
Updated font, so just use a regular space instead.
This commit is contained in:
parent
77bf357f50
commit
e0bba8eb86
|
@ -120,7 +120,7 @@ if ($bar) {
|
|||
$output .= " ";
|
||||
}
|
||||
$output = '{'
|
||||
. '"text":"' . $output . '\u200a' . $powref->{Total}->{Percentage} . '%",'
|
||||
. '"text":"' . $output . $powref->{Total}->{Percentage} . '%",'
|
||||
. '"icon":"' . $output . '",'
|
||||
. '"percentage":"' . $powref->{Total}->{Percentage} . '",'
|
||||
. '"tooltip":"' . $class . '",'
|
||||
|
|
|
@ -39,7 +39,7 @@ if ($cmd eq 'bar') {
|
|||
my $temp = $ref->{current}->{temp} - 273.15;
|
||||
my $icon = $ref->{current}->{weather}->[0]->{icon};
|
||||
|
||||
printf("<span font='Anonymous Pro 18'>%s</span>%.1f%s", $icons{$icon}, ${temp}, "°C");
|
||||
printf("<span font='Anonymice Nerd Font 18'>%s</span>%.1f%s", $icons{$icon}, ${temp}, "°C");
|
||||
} elsif ($cmd eq 'notify') {
|
||||
`notify-send weather TODO`;
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue