Quote Originally Posted by neon401 View Post
Once again I'm in need of help!

Code:
WEATHER ${hr 2}
${if_existing /proc/net/route wlan0}
${voffset -8}${alignr 56}${font ConkyWeather:style=Bold:size=40}${execi 600 conkyForecast --location=NOXX0032 --datatype=WF}${font}
${voffset -52}${font Weather:size=40}y${font} ${voffset -38}${font Trebuchet MS:size=26}${execi 600 conkyForecast --location=NOXX0032 --datatype=HT}${font}


${voffset 0}${font}Barometer Tendency: ${alignr}${execi 600 conkyForecast --location=NOXX0032 --datatype=BD}
${voffset 0}Humidity: ${alignr}${execi 600 conkyForecast --location=NOXX0032 --datatype=HM}
${voffset 0}${font}Wind Speed: ${alignr}${execi 600 conkyForecast --location=NOXX0032 --hideunits --datatype=WS} km/h ${execi 600 conkyForecast --location=NOXX0032 --hideunits --datatype=WD}
${voffset 0}${font}Wind Gusts: ${alignr}${execi 600 conkyForecast --location=NOXX0032 --datatype=WG}
${voffset 0}Daylight: ${alignr}${execi 600 conkyForecast --location=NOXX0032 --datatype=SR} - ${execi 600 conkyForecast --location=NOXX0032 --datatype=SS}

${font Trebuchet MS:size=12}${execi 600 conkyForecast --location=NOXX0032 --datatype=MP}
${voffset -30}${alignr 42}${font MoonPhases:size=28}${execi 600 conkyForecast --location=NOXX0032 --datatype=MF}${font}
${else}${if_existing /proc/net/route ppp0}
${voffset -8}${alignr 56}${font ConkyWeather:style=Bold:size=40}${execi 600 conkyForecast --location=NOXX0032 --datatype=WF}${font}
${voffset -52}${font Weather:size=40}y${font} ${voffset -38}${font Trebuchet MS:size=26}${execi 600 conkyForecast --location=NOXX0032 --datatype=HT}${font}


${voffset 0}${font}Barometer Tendency: ${alignr}${execi 600 conkyForecast --location=NOXX0032 --datatype=BD}
${voffset 0}Humidity: ${alignr}${execi 600 conkyForecast --location=NOXX0032 --datatype=HM}
${voffset 0}${font}Wind Speed: ${alignr}${execi 600 conkyForecast --location=NOXX0032 --hideunits --datatype=WS} km/h ${execi 600 conkyForecast --location=NOXX0032 --hideunits --datatype=WD}
${voffset 0}${font}Wind Gusts: ${alignr}${execi 600 conkyForecast --location=NOXX0032 --datatype=WG}
${voffset 0}Daylight: ${alignr}${execi 600 conkyForecast --location=NOXX0032 --datatype=SR} - ${execi 600 conkyForecast --location=NOXX0032 --datatype=SS}

${font Trebuchet MS:size=12}${execi 600 conkyForecast --location=NOXX0032 --datatype=MP}
${voffset -30}${alignr 42}${font MoonPhases:size=28}${execi 600 conkyForecast --location=NOXX0032 --datatype=MF}${font}
${endif}${else}
${font PizzaDude Bullets:size=14}4${font} Weather Unavailable ${endif}
On the second line:
Code:
${if_existing /proc/net/route wlan0}
This means it will display weather if wlan0 is currently connected. Is there any way to make it display if either wlan0 or eth0 is connected?
Try just putting the weather info in without the $if statements; if there's no connection, it just won't display anything, AFAIK.

Hm. Unless you've got some hard coded info in your template, like "Temp:"...Mine doesn't have anything hard-coded, so if, for example, my Conky loads before my WLAN comes up, it just doesn't display anything for weather. Have a go and see what it comes up with.