From bea26906d6e1ff8483fe5a7158034325ff4cdb55 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Tue, 26 Sep 2023 10:03:28 +0200 Subject: [PATCH] Fix systray transparent icons by setting bar opaque --- home/qtile/src/core/bar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/qtile/src/core/bar.py b/home/qtile/src/core/bar.py index f095811..e529065 100644 --- a/home/qtile/src/core/bar.py +++ b/home/qtile/src/core/bar.py @@ -51,7 +51,7 @@ def __init__(self, id_): super().__init__( widgets=self._build_widgets(), size=24, - background=Color.BG_DARK.with_alpha(0.7), + background=Color.BG_DARK, margin=[0, 0, 8, 0], )