12 lines
386 B
Plaintext
12 lines
386 B
Plaintext
(defwidget panel_weather_ico [h]
|
|
(label
|
|
:class "panel_mini_widg panel_ico panel_weather_ico"
|
|
:halign "end"
|
|
:valign "end"
|
|
:height "${h}"
|
|
:width "${h}"
|
|
;:active true
|
|
:text "${weather_info.weather[0].icon}"
|
|
:tooltip "${weather_info.weather[0].main}, ${weather_info.main.temp}℃"
|
|
)
|
|
) |