From c03536718ca827a835e519a5c60216426ae54381 Mon Sep 17 00:00:00 2001 From: godot Date: Sat, 25 Nov 2023 17:25:42 +0100 Subject: [PATCH] margin found on bar --- bar.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/bar.py b/bar.py index 2e794ac..2d7fb4f 100644 --- a/bar.py +++ b/bar.py @@ -21,19 +21,27 @@ screens = [ top=bar.Bar( [ # widget.CurrentLayout(), - widget.GroupBox(), + + widget.GroupBox( + highlight_metod='block', + visible_groups=['1', '2', '3', '4', '5'] + ), + widget.Prompt(), + widget.WindowName(), + widget.Chord( chords_colors={ "launch": ("#ff0000", "#ffffff"), }, name_transform=lambda name: name.upper(), ), + widget.Clock(format="%Y-%m-%d %a %H:%M"), ], 30, - margine=[4, 6, 2, 6], + margin=[3,6,6,6], border_width=[0, 0, 0, 0], # border_color=["ff00ff", "000000", "ff00ff", "000000"] # Borders are magenta ),