diff options
-rw-r--r-- | .config/qtile/config.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 2762b64..f0063c6 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -107,7 +107,7 @@ def init_widgets_defaults(): return dict(font="Noto Sans", fontsize = 12, padding = 2, - background=colors[1]) + background=my_colors["black"]) widget_defaults = init_widgets_defaults() @@ -169,8 +169,8 @@ def init_widgets_list(): widget.Sep( linewidth = 1, padding = 10, - foreground = colors[2], - background = colors[1] + foreground = my_colors["black2"], + background = my_colors["black"] ), widget.TextBox( font="FontAwesome", |