Compare commits

..

No commits in common. "ee8ae4f69ed819a91adda17cf1959582b175b3eb" and "2df1004fe92abb5a44b106206657f2a648f05449" have entirely different histories.

2 changed files with 9 additions and 9 deletions

View file

@ -48,7 +48,7 @@
# remeber to bump this hash when your dependencies change.
#vendorSha256 = pkgs.lib.fakeSha256;
vendorHash = "sha256-7/0f6ylFf+znadofLfvaV+llfHjf4qdelGwqKilHiZ4=";
vendorSha256 = "sha256-7/0f6ylFf+znadofLfvaV+llfHjf4qdelGwqKilHiZ4=";
};
});

16
main.go
View file

@ -73,25 +73,25 @@ func weatherIcon(desc string) string {
case containsOf(d, "clear", "sunny"):
return ""
case containsOf(d, "partly cloudy", "clouds"):
return ""
return ""
case containsOf(d, "cloudy"):
return ""
return ""
case containsOf(d, "overcast"):
return ""
return ""
case containsOf(d, "mist", "fog", "haze"):
return ""
return ""
case containsOf(d, "patchy rain", "drizzle", "light rain"):
return ""
return ""
case containsOf(d, "thunder"):
return ""
case containsOf(d, "freezing", "sleet", "hail", "ice"):
return ""
return ""
case containsOf(d, "rain"):
return ""
return ""
case containsOf(d, "blizzard", "heavy snow"):
return ""
case containsOf(d, "snow"):
return ""
return ""
default:
return ""
}