Candyrice/yuck/panel/panel_widgs/panel_weather_ico.yuck

12 lines
386 B
Plaintext
Raw Normal View History

2024-12-12 15:38:51 +00:00
(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
2024-12-13 13:26:01 +00:00
:text "${weather_info.weather[0].icon}"
:tooltip "${weather_info.weather[0].main}, ${weather_info.main.temp}℃"
2024-12-12 15:38:51 +00:00
)
)