From e317f2db74fa024b58c2c0d4bc0e1df0f489c290 Mon Sep 17 00:00:00 2001 From: jdlugosz963 Date: Wed, 27 Jul 2022 10:21:31 +0200 Subject: Add systray widget to my qtile config --- .config/qtile/config.org | 4 +++- .config/qtile/config.py | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to '.config') diff --git a/.config/qtile/config.org b/.config/qtile/config.org index 54892f6..be587dc 100644 --- a/.config/qtile/config.org +++ b/.config/qtile/config.org @@ -250,7 +250,9 @@ screens = [ widget.Sep(**soft_sep), widget.Clock(format='📅 %B %-d, %H:%M', foreground=CYAN), widget.Sep(**soft_sep), - widget.CurrentScreen() + widget.CurrentScreen(), + widget.Sep(**soft_sep), + widget.Systray() ], 24, margin=8, diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 0cdd232..abd9549 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -191,7 +191,9 @@ screens = [ widget.Sep(**soft_sep), widget.Clock(format='📅 %B %-d, %H:%M', foreground=CYAN), widget.Sep(**soft_sep), - widget.CurrentScreen() + widget.CurrentScreen(), + widget.Sep(**soft_sep), + widget.Systray() ], 24, margin=8, -- cgit v1.2.3