75 lines
1.9 KiB
Common Lisp
75 lines
1.9 KiB
Common Lisp
;; -*-lisp-*- Include modules
|
|
(include "./modules/workspaces.yuck")
|
|
(include "./modules/clock.yuck")
|
|
(include "./modules/system.yuck")
|
|
(include "./modules/network.yuck")
|
|
(include "./modules/volume.yuck")
|
|
(include "./modules/aggietime.yuck")
|
|
(include "./modules/timer.yuck")
|
|
(include "./modules/mpris.yuck")
|
|
|
|
(include "./windows.yuck")
|
|
|
|
(defwindow leftbar
|
|
:monitor 2
|
|
:geometry (geometry :width "100%"
|
|
:height "36px"
|
|
:anchor "top center")
|
|
:exclusive true
|
|
:focusable false
|
|
:stacking "fg"
|
|
(centerbox :orientation "h"
|
|
:class "bar root"
|
|
(normandy-leftbar--left)
|
|
"" ;;(normandy-leftbar--center)
|
|
(normandy-leftbar--right)))
|
|
|
|
(defwindow rightbar
|
|
:monitor 1
|
|
:geometry (geometry :width "100%"
|
|
:height "26px"
|
|
:anchor "top center")
|
|
:exclusive true
|
|
:focusable false
|
|
:stacking "fg"
|
|
(centerbox :orientation "h"
|
|
:class "bar root"
|
|
(normandy-rightbar--left)
|
|
"" ;;(normandy-rightbar--center)
|
|
(normandy-rightbar--right)))
|
|
|
|
(defwindow centerbar
|
|
:monitor 0
|
|
:geometry (geometry :width "100%"
|
|
:height "26px"
|
|
:anchor "top center")
|
|
:exclusive true
|
|
:focusable false
|
|
:stacking "fg"
|
|
(centerbox :orientation "h"
|
|
:class "bar root"
|
|
(normandy-centerbar--left)
|
|
(normandy-centerbar--center)
|
|
(normandy-centerbar--right)))
|
|
|
|
(defwindow sidebar
|
|
:monitor 2
|
|
:geometry (geometry :width "210px"
|
|
:height "1044px"
|
|
:anchor "left bottom")
|
|
:exclusive true
|
|
:focusable false
|
|
:stacking "fg"
|
|
(normandy-sidebar))
|
|
|
|
(defwindow sidebar2
|
|
:monitor 1
|
|
:geometry (geometry :width "210px"
|
|
:height "1044px"
|
|
:anchor "right bottom")
|
|
:exclusive true
|
|
:focusable false
|
|
:stacking "fg"
|
|
(normandy-sidebar))
|
|
|