Added normandy eww config

This commit is contained in:
Ezri Brimhall 2024-03-07 15:11:29 -07:00
parent d7334346e3
commit 095e77cf2d
Signed by: ezri
GPG Key ID: 41520EAF66DF5A25

View File

@ -0,0 +1,71 @@
;; -*-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 0
: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 network-status
:monitor 0
:geometry (geometry :width "200px"
:height "0px"
:x "80px"
:y "0px"
:anchor "top left")
:exclusive false
:focusable false
:stacking "overlay"
(box :orientation "v"
:class "bar root bg"
:visible {network--show-details}
(network-detail)))
(defwindow network-status
:monitor 0
:geometry (geometry :width "200px"
:height "0px"
:x "80px"
:y "0px"
:anchor "top left")
:exclusive true
:focusable false
:stacking "fg"
(box :orientation "v"
:class "bar root bg"
:visible {network--show-details}
(network-detail)))