From a0bd08d0632a6eb54227646f41f5d65c3dab0c06 Mon Sep 17 00:00:00 2001 From: Bartek Stalewski Date: Thu, 9 Feb 2023 01:42:43 +0100 Subject: [PATCH] Back to old colors. --- _desktop/qtile/config.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/_desktop/qtile/config.py b/_desktop/qtile/config.py index 3443eba..023c781 100644 --- a/_desktop/qtile/config.py +++ b/_desktop/qtile/config.py @@ -104,8 +104,8 @@ layouts = [ ] widget_defaults = dict( - foreground="#f8f8f2", - background="#272822", + foreground='#c7c7c7', + background='#272822', font="RobotoMono Nerd Font Medium", fontsize=14, ) @@ -119,7 +119,7 @@ screens = [ top=bar.Bar( [ widget.GroupBox( - active='#f3ffff', + active='#feffff', disable_drag=True, highlight_method='block', rounded=False, @@ -137,26 +137,26 @@ screens = [ background_low='#272822', background_urgent='#770000', foreground='#000000', - foreground_low="#f8f8f2", - foreground_urgent='#ffffff', + foreground_low='#c7c7c7', + foreground_urgent='#feffff', font='RobotoMono Nerd Font Bold', parse_text=yubikey_replace, ), widget.GenPollCommand( background='#005577', - foreground='#ffffff', + foreground='#feffff', update_interval=1, cmd="sb-mail", ), widget.GenPollCommand( background='#770000', - foreground='#ffffff', + foreground='#feffff', update_interval=1, cmd="sb-volume", ), widget.GenPollCommand( background='#770000', - foreground='#ffffff', + foreground='#feffff', update_interval=1, cmd="sb-network", ), @@ -168,7 +168,7 @@ screens = [ full_char='\uf102', update_interval=1, low_background='#770000', - low_foreground='#ffffff', + low_foreground='#feffff', low_percentage=0.2, ), widget.Clock( @@ -195,7 +195,7 @@ floating_layout = layout.Floating( *layout.Floating.default_float_rules, Match(wm_class='Authenticator'), ], - border_focus='#ffffff', + border_focus='#feffff', border_normal="#272822", border_width=2, )