From 4dd5ad747ac6f8f8002a511c38d11516241d95a8 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Thu, 22 Feb 2024 14:01:49 +0100 Subject: eww: Better support multimonitor setups --- .config/eww/eww.yuck | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to '.config/eww/eww.yuck') diff --git a/.config/eww/eww.yuck b/.config/eww/eww.yuck index afcce11..b50fcc0 100644 --- a/.config/eww/eww.yuck +++ b/.config/eww/eww.yuck @@ -36,24 +36,24 @@ :stacking "fg" :exclusive true :geometry (geometry :width "100%" :height "40px" :anchor "top center") - (bar)) + (bar :monitor 0)) (defwindow bar-2 :monitor 1 :stacking "fg" :exclusive true :geometry (geometry :width "100%" :height "40px" :anchor "top center") - (bar)) + (bar :monitor 1)) ;; Widgets -(defwidget bar [] +(defwidget bar [monitor] (centerbox - (start) + (start :monitor monitor) (middle) (end))) -(defwidget start [] - (workspaces)) +(defwidget start [monitor] + (workspaces :monitor monitor)) (defwidget middle [] (clock)) @@ -70,11 +70,11 @@ (battery) (user))) -(defwidget workspaces [] +(defwidget workspaces [monitor] (box :class "workspaces" :space-evenly false (for id in workspace-list - (button :class {active-workspace == id ? "active" : ""} + (button :class {active-workspace[monitor] == id ? "active" : ""} :onclick `hyprctl dispatch workspace ${id}` id)))) -- cgit v1.2.3