From 0fab30cc8e83593807e24e700551db354e7637fc Mon Sep 17 00:00:00 2001 From: John Mertz Date: Fri, 23 Sep 2022 18:19:25 -0400 Subject: [PATCH] Increase icon size --- waybar/waybar-weather.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {