From eb90b98ebfc1afcbbdebb6ef7aeb0f4a09e952d5 Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Tue, 8 Aug 2023 17:32:36 -0500 Subject: [PATCH] Minor edits --- .config/qtile/config.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 2375877..0e39c25 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -439,13 +439,13 @@ def init_widgets_list(): ) ], ), - widget.Spacer( - length = 6, - foreground = colors[2] - ), widget.Systray( padding = 4 ), + widget.Spacer( + length = 8, + foreground = colors[2] + ), ] return widgets_list @@ -456,7 +456,7 @@ def init_widgets_list(): def init_widgets_screen1(): widgets_screen1 = init_widgets_list() - del widgets_screen1[16] # Removes unwanted widgets (systray) on Monitors 1,3 + del widgets_screen1[15] # Removes unwanted widgets (systray) on Monitors 1,3 return widgets_screen1 def init_widgets_screen2():