zagortenay333 / conky_themes

A small collection of conky configs
624 stars 93 forks source link

Shouldn't the next days show the weather preview too? #56

Closed hrqmonteiro closed 5 years ago

hrqmonteiro commented 5 years ago

2019-01-08-175236_287x289_scrot Only the current day shows correctly, everyday the others still show 0º/º

jdelamater99 commented 5 years ago

Tracked the answer to down as a missing dependency. The parse_weather script uses bc (lines 60 & 74), which is a command line calculator. You can test if this is the problem you are having my issuing this command in a terminal window.

This is called in .conkyrc, line 126, at least in the OMG-Ubuntu! theme ~/.harmattan-assets/parse_weather 'avg' '.main.temp_min' '0'

If bc isn't installed, you'll get the following error message
/home/pi/.harmattan-assets/parse_weather: line 60: bc: command not found /home/pi/.harmattan-assets/parse_weather: line 60: bc: command not found /home/pi/.harmattan-assets/parse_weather: line 60: bc: command not found /home/pi/.harmattan-assets/parse_weather: line 74: bc: command not found

If that's the case, install bc using the following command sudo apt-get install bc

image

zagortenay333 commented 5 years ago

I guess this is fixed then so closing.