diff options
author | jdlugosz963 <jdlugosz963@gmail.com> | 2022-06-23 01:06:04 +0200 |
---|---|---|
committer | jdlugosz963 <jdlugosz963@gmail.com> | 2022-06-23 01:06:04 +0200 |
commit | d3c7562f6b8d7d14fe6198897289973398177074 (patch) | |
tree | 920b1afa456c03042d0eeba77af6fb23e8e4af82 /.config/qtile | |
parent | 7762c3b4f10ec8abe5b99f30ee07fcb0e126e9b0 (diff) | |
download | dotfiles-d3c7562f6b8d7d14fe6198897289973398177074.tar.gz dotfiles-d3c7562f6b8d7d14fe6198897289973398177074.zip |
Repair bug :/
Diffstat (limited to '.config/qtile')
-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 | ||