Skip to content

Commit

Permalink
Update default_config.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Deshdeepak1 committed Apr 13, 2024
1 parent f987f5f commit 0e90e3a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libqtile/resources/default_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,22 +99,22 @@
for i in groups:
keys.extend(
[
# mod1 + group number = switch to group
# mod + group number = switch to group
Key(
[mod],
i.name,
lazy.group[i.name].toscreen(),
desc="Switch to group {}".format(i.name),
),
# mod1 + shift + group number = switch to & move focused window to group
# mod + shift + group number = switch to & move focused window to group
Key(
[mod, "shift"],
i.name,
lazy.window.togroup(i.name, switch_group=True),
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 + group number = move focused window to group
# # mod + shift + group number = move focused window to group
# Key([mod, "shift"], i.name, lazy.window.togroup(i.name),
# desc="move focused window to group {}".format(i.name)),
]
Expand Down

0 comments on commit 0e90e3a

Please sign in to comment.