[vega] Sets up working system. [Eww] Moves config to be specific to drew-desktop

This commit is contained in:
2025-03-28 10:28:10 -07:00
parent c95d3419a2
commit b241ccd7d8
21 changed files with 23 additions and 50 deletions

View File

@@ -0,0 +1,47 @@
(include "./workspaces.yuck")
(defwidget primary-bar []
(box
:class "statusbar"
:orientation "h"
:height 30
(primary-leftstuff)
(primary-rightstuff)
)
)
(defwidget primary-leftstuff []
(box
:class "leftstuff"
:orientation "h"
:space-evenly true
:halign "start"
(workspaces-primary)
)
)
(defwidget primary-rightstuff []
(box
:class "rightstuff"
:orientation "h"
:halign "end"
(label :text "")
)
)
(defwindow primary-statusbar
:monitor '[ "<primary>", "DP-2", 0 ]'
:geometry (geometry
:x "0%"
:y "0%"
:width "100%"
:height "30px"
:anchor "top center"
)
:stacking "fg"
:exclusive true
:focusable false
:wm-ignore false
(primary-bar)
)