diff --git a/de/home/.config/eww/scripts/home/weather b/de/home/.config/eww/scripts/home/weather index 3e208f5..e13fac2 100755 --- a/de/home/.config/eww/scripts/home/weather +++ b/de/home/.config/eww/scripts/home/weather @@ -37,6 +37,9 @@ case "${condition_code}" in 176|182|185|200|263|266|281|284|293|296|299|302|305|308|311) condition_icon="" ;; + 386) + condition_icon="" + ;; esac jq -n --arg condition "${condition}" --arg current_temp "${current_temp}" --arg feels_temp "${feels_temp}" --arg min_temp "${min_temp}" --arg max_temp "${max_temp}" --arg humidity "${humidity}" --arg icon "${condition_icon}" --arg updated "${updated}" '{condition: $condition,current_temp: $current_temp,feels_temp: $feels_temp,min_temp: $min_temp,max_temp: $max_temp,humidity: $humidity,icon: $icon,updated: $updated}'