Candyrice/yuck/panel/panel_widgs/panel_weather_ico.yuck

12 lines
396 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-12 21:31:22 +00:00
:text "${weather_icon[weather_info.weather[0].icon]}"
2024-12-12 15:38:51 +00:00
:tooltip "${weather_info.weather[0].main} ${weather_info.main.temp}"
)
)