From e6261495ae8783820fdf353f3bdeafb8ce2a81e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=9Eahin=20Akkaya?= Date: Wed, 26 Jan 2022 19:01:03 +0300 Subject: [PATCH] Fix a bug in qtile config Now it is obvious why 98c325f occurs. Because qtile is misconfigured. --- .config/qtile/modules/groups.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/qtile/modules/groups.py b/.config/qtile/modules/groups.py index 14acd02..a88c7c9 100644 --- a/.config/qtile/modules/groups.py +++ b/.config/qtile/modules/groups.py @@ -12,7 +12,7 @@ for i, j in zip(groups, symbols): Key([mod], j, lazy.group[i.name].toscreen(), desc="Switch to group {}".format(i.name)), - Key([mod, "shift"], i.name, lazy.window.togroup(i.name), + Key([mod, "shift"], j, lazy.window.togroup(i.name), desc="move focused window to group {}".format(i.name)), # Use below if you prefer to switch to that group.