29 lines
583 B
Text
29 lines
583 B
Text
(include "modules/bar.yuck")
|
|
|
|
(defwindow bar
|
|
:windowtype "dock"
|
|
:exclusive true
|
|
:namespace "eww-bar"
|
|
:geometry (geometry :x "0%"
|
|
; :y "0%"
|
|
:y "100px"
|
|
:width "100%"
|
|
:height "50px"
|
|
; :anchor "top")
|
|
:anchor "top center")
|
|
; :reserve (struts :side "top" :distance "4%")
|
|
:reserve (struts :side "top" :distance "150px")
|
|
(bar))
|
|
|
|
(include "modules/home.yuck")
|
|
|
|
(defwindow home
|
|
:windowtype "normal"
|
|
:exclusive false
|
|
:geometry (geometry
|
|
; :y "27px"
|
|
; :width "300px"
|
|
:height "100%"
|
|
:anchor "center left")
|
|
:stacking "foreground"
|
|
(home))
|