New backup 2025-03-19 00:43:53
This commit is contained in:
parent
a3e433ddc6
commit
b0e2cae63e
2 changed files with 20 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
|||
:width 300
|
||||
:height 125
|
||||
:space-evenly true
|
||||
"Eugene, OR | ${json.condition}"
|
||||
"Eugene, OR | ${json.condition} ${json.icon}"
|
||||
"${json.current_temp}°F / ${json.humidity}% "
|
||||
" ${json.max_temp}°F ${json.min_temp}°F"
|
||||
" ${json.updated}"))
|
||||
|
|
|
@ -20,4 +20,22 @@ max_temp="$(jq -r '.weather[0].maxtempF' ${wttr_cache})"
|
|||
humidity="$(jq -r '.current_condition[0].humidity' ${wttr_cache})"
|
||||
updated="$(date -r ${wttr_cache} '+%Y-%m-%d, %H:%M')"
|
||||
|
||||
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 updated "${updated}" '{condition: $condition,current_temp: $current_temp,feels_temp: $feels_temp,min_temp: $min_temp,max_temp: $max_temp,humidity: $humidity,updated: $updated}'
|
||||
case "${condition_code}" in
|
||||
113)
|
||||
""
|
||||
;;
|
||||
116|119|122|143)
|
||||
condition_icon=""
|
||||
;;
|
||||
179|227|230)
|
||||
condition_icon=""
|
||||
;;
|
||||
248|260)
|
||||
condition_icon="▒"
|
||||
;;
|
||||
176|182|185|200|263|266|281|284|293|296|299|302|305|308|311)
|
||||
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}'
|
||||
|
|
Loading…
Add table
Reference in a new issue