dotfiles_ewwii/nbcl/panel/panel_component.nbcl

24 lines
479 B
Plaintext

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