diff options
author | Mateja <mail@matejamaric.com> | 2020-09-14 12:09:24 +0200 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2020-09-14 12:09:24 +0200 |
commit | 12c54ea33bbb88d52c23ba9e609da7e369fc4938 (patch) | |
tree | a00a99602f5e013172f977b655da1d8019820145 | |
parent | ecb977b1c32f18994d0bdddf3932013cc8c55a7b (diff) | |
download | dotfiles-12c54ea33bbb88d52c23ba9e609da7e369fc4938.tar.gz dotfiles-12c54ea33bbb88d52c23ba9e609da7e369fc4938.zip |
Don't move with the window
-rw-r--r-- | .config/qtile/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 3b24472..c211117 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -103,7 +103,7 @@ for i in groups: desc="Switch to group {}".format(i.name)), # mod1 + shift + letter of group = switch to & move focused window to group - Key([mod, "shift"], i.name, lazy.window.togroup(i.name, switch_group=True), + Key([mod, "shift"], i.name, 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. # # mod1 + shift + letter of group = move focused window to group |