dotfiles_ewwii/nbcl/panel/panel_component.nbcl
2026-09-07 16:50:41 +05:30

18 lines
480 B
Plaintext

import "nbcl/components/datetime_widg.nbcl" as datetime_widg { * }
import "nbcl/panel/panel_section.nbcl" as panel_section { * }
component EwwiiPanel () {
Box {
orinetation = "horizontal"
halign = "center"
class = "ewwii_panel"
height = config.panel_height
width = config.panel_width
space_evenly = false
spacing = 0
panel_section.panel_section("left", "start")
panel_section.panel_section("center", "center")
panel_section.panel_section("right", "end")
}
}