[Help] Weather sysstat: incorrect days

I installed a weather sysstats. But the days to come are not correct.

Tomorrow should be wednesday and it says Thursday :/

#230907

Most likely a problem with the selector for that day.

Including a picture of the offending item would help.

#231046

The selectors for daynames should be something like this:

//day[@d=n]/@t where n represents the day number starting from 0.

So: 0 represents this day, 1 is tomorrow, an so on up to 9.

Check the selectors and make sure the day number 'n' is correct.

#231442

The selectors for daynames should be something like this:

//day[@d=n]/@t where n represents the day number starting from 0.

So: 0 represents this day, 1 is tomorrow, an so on up to 9.

Check the selectors and make sure the day number 'n' is correct.

Thank you very much!!

One more question...the tonight icon isnt showing a moon and the temp is the day temp. How can this be fixed??

My selectors for the tonight are:

//day[@d=1]//icon

//day[@d=1]//hi

//day[@d=1]/@t

#231557

Found out about the night icon

posted by applelover:

Got it

Use the following for the selector for the tonight image:

/weather/dayf/day[@d=0]/part[@p=n]/icon

Now i only need the correct tonight temp config.

#231561

Or you could use the following:

Icon - //day[@d=0]/part[t != "N/A"]/icon

Temp - //day[@d=0]//*[text != "N/A"]

Judge originally came up with these; although, I modified the icon since weather.com started to use 44 for icon during nighttime.

#231570

%s° is showing as temp with this config:

//day[@d=0]//*[text != "N/A"]

#231576