dotfiles_ewwii/nbcl/panel/panel_component.nbcl
candifloss daa0e1637c Introduce variables for dynamic content
- Date
- Time
- No CSS yet
- No `Listen` variables yet
2026-08-26 07:52:02 +05:30

22 lines
399 B
Plaintext

component EwwiiPanel () {
Box {
orinetation = "horizontal"
halign = "center"
class = "ewwii_panel"
height = config.panel_height
width = config.panel_width
Label {
widget_name = "clockwidg"
class = "clockwidg"
text = global("time_hhmm")
halign = "end"
}
Label {
widget_name = "datewidg"
class = "datewidg"
text = global("date_ddM")
halign = "end"
}
}
}