diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-02-21 11:37:07 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-02-21 11:37:07 +0100 |
commit | 6e845dacb460007c0b027ef0fbd24203db4b2512 (patch) | |
tree | d75ffb2fa371965a0e063cea14276b8823b8af07 /.config | |
parent | 6452c9a4deeb9cc0d938632d3313b5cb2ed6f0f9 (diff) |
eww: Change bar with bar-(1 2)
Diffstat (limited to '.config')
-rw-r--r-- | .config/eww/eww.scss | 2 | ||||
-rw-r--r-- | .config/eww/eww.yuck | 10 |
2 files changed, 10 insertions, 2 deletions
diff --git a/.config/eww/eww.scss b/.config/eww/eww.scss index c2012ad..c181194 100644 --- a/.config/eww/eww.scss +++ b/.config/eww/eww.scss @@ -6,7 +6,7 @@ color: #FFF; } -.bar { +.bar-1, .bar-2 { background-color: rgba(43, 48, 59, 0.5); border-bottom: 3px solid rgba(100, 114, 125, 0.5); } diff --git a/.config/eww/eww.yuck b/.config/eww/eww.yuck index 0d80265..afcce11 100644 --- a/.config/eww/eww.yuck +++ b/.config/eww/eww.yuck @@ -31,13 +31,21 @@ `scripts/wireless`) ;; Windows -(defwindow bar +(defwindow bar-1 :monitor 0 :stacking "fg" :exclusive true :geometry (geometry :width "100%" :height "40px" :anchor "top center") (bar)) +(defwindow bar-2 + :monitor 1 + :stacking "fg" + :exclusive true + :geometry (geometry :width "100%" :height "40px" :anchor "top center") + (bar)) + +;; Widgets (defwidget bar [] (centerbox (start) |