diff options
-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 3a0e285..3b24472 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -99,7 +99,7 @@ groups = [Group(i) for i in "asdfuiop"] for i in groups: keys.extend([ # mod1 + letter of group = switch to group - Key([mod], i.name, lazy.group[i.name].toscreen(), + Key([mod], i.name, lazy.group[i.name].toscreen(toggle=False), desc="Switch to group {}".format(i.name)), # mod1 + shift + letter of group = switch to & move focused window to group |