mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2025-10-27 15:55:15 +01:00
36 lines
648 B
Text
36 lines
648 B
Text
(include "topBar/topBar.yuck")
|
|
(include "bottomBar/bottomBar.yuck")
|
|
|
|
(include "topBar/time.yuck")
|
|
|
|
(defwindow streamUi
|
|
:monitor 0
|
|
:stacking "fg"
|
|
:wm-ignore true
|
|
:exclusive true
|
|
:geometry (geometry
|
|
:width "640px"
|
|
:height "100%"
|
|
:anchor "center right")
|
|
(centerbox
|
|
:style "padding: 0 3px"
|
|
:orientation "vertical"
|
|
(label :text "hi")
|
|
(label :text "hi")
|
|
(centerbox
|
|
:valign "end"
|
|
(box
|
|
:halign "start"
|
|
(systray
|
|
:icon-size 18
|
|
:spacing 3
|
|
)
|
|
)
|
|
(box)
|
|
(box
|
|
:halign "end"
|
|
(time)
|
|
)
|
|
)
|
|
)
|
|
)
|