From 1cce34c655285025908e8862466638d029ab9b1c Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Sun, 6 Aug 2023 16:51:21 -0500 Subject: [PATCH] Making sure 'switch_group' is set to FALSE for qtile workspace keybindings. --- .config/qtile/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 00b013e..3c986d0 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -159,7 +159,7 @@ for i in groups: Key( [mod, "shift"], i.name, - lazy.window.togroup(i.name, switch_group=True), + lazy.window.togroup(i.name, switch_group=False), desc="Switch to & move focused window to group {}".format(i.name), ), # Or, use below if you prefer not to switch to that group.