很棒的 WM 天氣小部件問題

很棒的 WM 天氣小部件問題

我使用 Awesome WM 作為視窗管理器,以獲得更靈活的環境。但是當我使用“惡意”庫製作天氣小部件時,我可能會犯一些錯誤...下一個問題是:任何時候我想獲取桌面上的天氣信息,我都會得到一個向量N/A。我無法識別真正的問題出在哪裡......從惡意來源獲取資訊時,一切都已收到。也許這是惡意小部件的錯誤?螢幕截圖(只需查看螢幕左上角): 螢幕
小工具代碼:

-- {{{ 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)
-- }}}

相關內容