aboutsummaryrefslogtreecommitdiff
path: root/home/rices/schrottkatze/eww/configDir/eww.yuck
blob: f6f20f51f277fe4c5f6a6b8f384b4bf068839e1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
(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)
      )
    )
  )
)