Estou usando o Awesome WM como gerenciador de janelas
para obter um ambiente mais flexível. Mas quando eu estava fazendo um widget do tempo,
usando biblioteca 'vicioso', eu poderia cometer algum erro ...
O problema é o seguinte: sempre que quero obter informações sobre o tempo de trabalho na área de trabalho, recebo um vetor de N/A
. Eu não posso reconhecer, onde o problema realmente é ... Ao obter informações de fonte viciosa, tudo é recebido. Talvez seja um bug do widget vicioso?
Capturas de tela (basta olhar para o canto superior esquerdo da tela):
tela .
Código do widget:
-- {{{ 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)
-- }}}
Tags widgets linux arch-linux awesome-wm