From 4606103f2463fbc094dfde73ffcaad841efaee16 Mon Sep 17 00:00:00 2001 From: Melon Bread Date: Sun, 7 Nov 2021 22:34:33 -0500 Subject: [PATCH] Updated launching waterfox-g4 --- .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 16ff079..75fd1a4 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -96,7 +96,7 @@ keys = [ Key(["mod1", "control"], "u", lazy.spawn("pavucontrol")), # ALT + ... KEYS Key(["mod1"], "p", lazy.spawn("pamac-manager")), - Key(["mod1"], "f", lazy.spawn("waterfox-g3")), + Key(["mod1"], "f", lazy.spawn("waterfox-g4")), Key(["mod1"], "m", lazy.spawn("thunar")), Key(["mod1"], "w", lazy.spawn("garuda-welcome")), # CONTROL + SHIFT KEYS @@ -387,7 +387,7 @@ def init_widgets_list(): widget.Image( filename="~/.config/qtile/icons/qtilelogo.png", iconsize=9, - background=color["bg1"], + background=color["bg"], mouse_callbacks={"Button1": lambda: qtile.cmd_spawn("jgmenu_run")}, ), widget.GroupBox( @@ -406,7 +406,7 @@ def init_widgets_list(): urgent_alert_method="block", urgent_border=color["dark-red"], this_current_screen_border=color["dark-aqua"], - this_screen_border=color["gray"], + this_screen_border=color["dark-green"], other_current_screen_border=color["bg0_h"], other_screen_border=color["gray"], disable_drag=True @@ -426,7 +426,7 @@ def init_widgets_list(): txt_floating="🗗", txt_minimized=">_ ", borderwidth=1, - background=color["light-purple"], + background=color["bg"], # unfocused_border = 'border' ), widget.CurrentLayoutIcon( @@ -477,7 +477,7 @@ def init_widgets_list(): fontsize=12, format="%Y-%m-%d %H:%M", ), - widget.Systray(background=color["dark-blue"], icon_size=20, padding=4), + widget.Systray(background=color["bg"], icon_size=20, padding=4), ] return widgets_list