diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/qtile/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index d93bf88..86d14bd 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py | |||
@@ -102,10 +102,10 @@ groups_names = [ | |||
102 | groups = [Group(i) for i in groups_names] | 102 | groups = [Group(i) for i in groups_names] |
103 | for i, group in enumerate(groups): | 103 | for i, group in enumerate(groups): |
104 | keys.extend([ | 104 | keys.extend([ |
105 | Key([mod], str(i), lazy.group[group.name].toscreen(), | 105 | Key([mod], str(i+1), lazy.group[group.name].toscreen(), |
106 | desc="Switch to group {}".format(group.name)), | 106 | desc="Switch to group {}".format(group.name)), |
107 | 107 | ||
108 | Key([mod, "shift"], str(i), lazy.window.togroup(group.name, switch_group=True), | 108 | Key([mod, "shift"], str(i+1), lazy.window.togroup(group.name, switch_group=True), |
109 | desc="Switch to & move focused window to group {}".format(group.name)), | 109 | desc="Switch to & move focused window to group {}".format(group.name)), |
110 | ]) | 110 | ]) |
111 | 111 | ||