diff --git a/waybar/waybar-weather.pl b/waybar/waybar-weather.pl index 2f5efcd..f8593a3 100755 --- a/waybar/waybar-weather.pl +++ b/waybar/waybar-weather.pl @@ -30,7 +30,7 @@ if ($cmd eq 'bar') { my $temp = $ref->{current}->{temp} - 273.15; my $icon = $ref->{current}->{weather}->[0]->{icon}; - printf("%s%.1f%s", $icons{$icon}, ${temp}, "°C"); + printf("%s%.1f%s", $icons{$icon}, ${temp}, "°C"); } elsif ($cmd eq 'notify') { `notify-send weather TODO`; } else {