steamburn: tried to fix span issue
This commit is contained in:
parent
d365496dc8
commit
d47664f38e
|
@ -509,16 +509,19 @@ netwidget:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.u
|
||||||
|
|
||||||
-- Weather widget
|
-- Weather widget
|
||||||
weatherwidget = wibox.widget.textbox()
|
weatherwidget = wibox.widget.textbox()
|
||||||
|
sky_toshow = ""
|
||||||
vicious.register(weatherwidget, vicious.widgets.weather,
|
vicious.register(weatherwidget, vicious.widgets.weather,
|
||||||
function (widget, args)
|
function (widget, args)
|
||||||
if args["{tempf}"] == "N/A" then
|
if args["{tempf}"] == "N/A" then
|
||||||
return gray .. "No " .. coldef .. white .. "Info " .. coldef
|
return gray .. "No " .. coldef .. white .. "Info " .. coldef
|
||||||
else
|
else
|
||||||
-- work in progress - ☂☔☃ ⛆⛇⛈ 🌂
|
-- work in progress - ☂☔☃ ⛆⛇⛈ 🌂
|
||||||
if( args["{sky}"] == "N/A" or string.find(args["{sky}"], "Clear") ~= nil ) then args["{sky}"] = "<span font=\"Symbola 10\" rise=\"-1535\">☼</span>"
|
if( args["{sky}"] == "N/A" or string.find(args["{sky}"], "Clear") ~= nil ) then sky_toshow = "<span font=\"Symbola 10\" rise=\"-1535\">☼</span>"
|
||||||
elseif( string.find(args["{sky}"], "Cloudy") ~= nil ) then args["{sky}"] = "<span font=\"Symbola 11\" rise=\"-1620\">☁</span>"
|
elseif( string.find(args["{sky}"], "Cloudy") ~= nil ) then sky_toshow = "<span font=\"Symbola 11\" rise=\"-1620\">☁</span>"
|
||||||
|
end
|
||||||
|
if sky_toshow ~= "" then return gray .. sky_toshow .. coldef .. " " .. white .. args["{tempc}"] .. " " .. coldef
|
||||||
|
else return gray .. args["{sky}"] .. coldef .. " " .. white .. args["{tempc}"] .. " " .. coldef
|
||||||
end
|
end
|
||||||
return gray .. args["{sky}"] .. coldef .. " " .. white .. args["{tempc}"] .. " " .. coldef
|
|
||||||
end
|
end
|
||||||
end, 1800, "ICAO-CODE-GOES-HERE" )
|
end, 1800, "ICAO-CODE-GOES-HERE" )
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue