26 lines
522 B
Text
26 lines
522 B
Text
(include "modules/bar.yuck")
|
|
|
|
(defwindow bar
|
|
:windowtype "dock"
|
|
:exclusive true
|
|
:geometry (geometry :x "0%"
|
|
:y "0%"
|
|
:width "100%"
|
|
:height "30px"
|
|
:anchor "top center")
|
|
:reserve (struts :side "top" :distance "4%")
|
|
(bar))
|
|
|
|
(include "modules/home.yuck")
|
|
|
|
(defwindow home
|
|
:windowtype "dock"
|
|
:exclusive true
|
|
:geometry (geometry :x "10px"
|
|
:y "10px"
|
|
:width "300px"
|
|
:height "200px"
|
|
:anchor "top left")
|
|
:reserve (struts :side "top" :distance "40%")
|
|
; :stacking "overlay"
|
|
(home))
|