2024-01-22 06:28:52 -06:00
|
|
|
; Windows
|
|
|
|
|
|
|
|
(defwindow bar0
|
|
|
|
:monitor 0
|
|
|
|
:windowtype "dock"
|
|
|
|
:stacking "fg"
|
|
|
|
:exclusive true
|
|
|
|
:geometry (geometry :x "0%"
|
|
|
|
:y "0%"
|
|
|
|
:width "100%"
|
|
|
|
:height "40px"
|
|
|
|
:anchor "top center")
|
|
|
|
;:reserve (struts :side "top" :distance "45px")
|
|
|
|
(bar :screen 0 :minimal false)
|
|
|
|
)
|
|
|
|
|
2024-10-20 12:44:14 -05:00
|
|
|
; todo: ADD HOME MONITOR
|
|
|
|
|
2024-01-22 06:28:52 -06:00
|
|
|
(defwindow bar1
|
2024-10-20 12:44:14 -05:00
|
|
|
:monitor '["ASUS MX239", "Acer H236HL"]'
|
2024-01-22 06:28:52 -06:00
|
|
|
:windowtype "dock"
|
|
|
|
:exclusive true
|
|
|
|
:geometry (geometry :x "0%"
|
|
|
|
:y "0%"
|
|
|
|
:width "100%"
|
|
|
|
:height "40px"
|
|
|
|
:anchor "top center")
|
|
|
|
;:reserve (struts :side "top" :distance "45px")
|
|
|
|
(bar :screen 1 :minimal false)
|
|
|
|
)
|
|
|
|
|
2024-10-20 12:44:14 -05:00
|
|
|
(defwindow bar2
|
|
|
|
:monitor '["VN279"]'
|
|
|
|
:windowtype "dock"
|
|
|
|
:exclusive true
|
|
|
|
:geometry (geometry :x "0%"
|
|
|
|
:y "0%"
|
|
|
|
:width "100%"
|
|
|
|
:height "40px"
|
|
|
|
:anchor "top center")
|
|
|
|
;:reserve (struts :side "top" :distance "43px")
|
|
|
|
(bar :screen 2 :minimal true)
|
|
|
|
)
|