멋진 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)
-- }}}

관련 정보