diff --git a/.config/eww/eww.yuck##hostname.normandy b/.config/eww/eww.yuck##hostname.normandy new file mode 100644 index 0000000..1896653 --- /dev/null +++ b/.config/eww/eww.yuck##hostname.normandy @@ -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))) + +