我正在使用 Awesome WM 作为窗口管理器,以获得更灵活的环境。但是当我使用“vicious”库制作天气小部件时,我可能会犯一些错误...问题是:任何时候我想获取桌面天气信息,我都会得到一个向量N/A
。我无法识别,真正的问题出在哪里...从 vicious 源获取信息时,一切都会收到。也许这是 vicious 小部件的一个错误?截图(只需查看屏幕左上角):
屏幕.
小部件代码:
-- {{{ Weather widget
weatherBox = wibox({ type = "desktop", visible = true, bg = "#00000000" })
weatherBox:geometry({ x = 10, y = 25, width = 300, height = 85 })
weatherLayout = wibox.layout.fixed.horizontal()
weatherWidget = boxWidget(vicious.widgets.weather,
function(w, data)
local city = data["{city}"]
local wind_speed = data["{windkmh}"]
local wind = data["{wind}"]
local sky = data["{sky}"]
local humidity = data["{humid}"]
local temperature = data["{tempc}"]
return 'Location: ' .. city .. '\n' ..
'Wind: ' .. wind_speed .. ', ' .. wind_speed .. '\n' ..
'Sky: ' .. sky .. '\n' ..
'Humidity: ' .. humidity .. '\n' ..
'Temerature: ' .. temperature .. ', C\n'
end, 1, "UUEE")
weatherLayout:add(weatherWidget)
weatherBox:set_widget(weatherLayout)
-- }}}