diff --git a/blinkenlicht/bl.fnl b/blinkenlicht/bl.fnl index 246a2e0..22bd800 100644 --- a/blinkenlicht/bl.fnl +++ b/blinkenlicht/bl.fnl @@ -23,8 +23,12 @@ (bar { - :anchor [:top :right] + ;; bar must be full width to set up an "exclusive zone" (moves + ;; other windows out of the way), otherwise it will display on + ;; to of whatever's on the screen already + :anchor [:top :right :left] :orientation :horizontal + :gravity :end :classes ["hey"] :indicators [ diff --git a/blinkenlicht/blinkenlicht.fnl b/blinkenlicht/blinkenlicht.fnl index 79973d3..77fedf7 100644 --- a/blinkenlicht/blinkenlicht.fnl +++ b/blinkenlicht/blinkenlicht.fnl @@ -135,7 +135,9 @@ (local bars []) -(fn bar [{ : anchor : orientation : indicators : classes }] +(fn bar [{: anchor : orientation : indicators + : gravity + : classes }] (let [window (Gtk.Window {} ) orientation (match orientation :vertical Gtk.Orientation.VERTICAL @@ -145,6 +147,9 @@ (add-css-classes ["bar"]) (add-css-classes (or classes []))) + (if (= gravity :end) + (box:pack_start (Gtk.EventBox) true true 0)) + (table.insert bars { : window : anchor : indicators }) (each [_ i (ipairs indicators)] (box:pack_start i.button false false 0))