mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-12-23 17:55:50 +01:00
11 lines
180 B
Text
11 lines
180 B
Text
(defwidget flagEl [color ?flipped]
|
|
(box
|
|
:style "border-${flipped ? "top" : "bottom"}: 3px solid ${color}"
|
|
:halign "fill"
|
|
)
|
|
)
|
|
|
|
(defwidget sep []
|
|
(label :text "|")
|
|
)
|
|
|