mirror of https://github.com/lcpz/lain.git
yawn: fair/windy icon added
This commit is contained in:
parent
422c9387f1
commit
161abc46ab
|
@ -102,10 +102,10 @@ function yawn.fetch_weather()
|
||||||
local hour = tonumber(os.date("%H"))
|
local hour = tonumber(os.date("%H"))
|
||||||
sky = icon_path
|
sky = icon_path
|
||||||
|
|
||||||
if forecast == "Clear" or
|
if string.find(forecast, "Clear") or
|
||||||
forecast == "Fair" or
|
string.find(forecast, "Fair") or
|
||||||
forecast == "Partly Cloudy" or
|
string.find(forecast, "Partly Cloudy") or
|
||||||
forecast == "Mostly Cloudy"
|
string.find(forecast, "Mostly Cloudy")
|
||||||
then
|
then
|
||||||
if hour >= 6 and hour <= 18
|
if hour >= 6 and hour <= 18
|
||||||
then
|
then
|
||||||
|
|
Loading…
Reference in New Issue