Nerd font doesn't render \u200a width

Updated font, so just use a regular space instead.
This commit is contained in:
John Mertz 2023-04-17 15:38:15 -04:00
parent 77bf357f50
commit e0bba8eb86
Signed by: jpm
GPG Key ID: E9C5EA2D867501AB
2 changed files with 8 additions and 8 deletions

View File

@ -105,22 +105,22 @@ if ($bar) {
$output = '';
if ($powref->{AC}->{Status} eq "Plugged-In") {
$class = 'charging';
$output .= "";
$output .= " ";
} elsif ($powref->{Total}->{Percentage} <= 10) {
$class = 'critical';
$output .= "";
$output .= " ";
} elsif ($powref->{Total}->{Percentage} <= 35) {
$class = 'low';
$output .= "";
$output .= " ";
} elsif ($powref->{Total}->{Percentage} <= 60) {
$output .= "";
$output .= " ";
} elsif ($powref->{Total}->{Percentage} <= 85) {
$output .= "";
$output .= " ";
} else {
$output .= "";
$output .= " ";
}
$output = '{'
. '"text":"' . $output . '\u200a' . $powref->{Total}->{Percentage} . '%",'
. '"text":"' . $output . $powref->{Total}->{Percentage} . '%",'
. '"icon":"' . $output . '",'
. '"percentage":"' . $powref->{Total}->{Percentage} . '",'
. '"tooltip":"' . $class . '",'

View File

@ -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 {