Skip to content

Commit

Permalink
Fix some comments in the default config
Browse files Browse the repository at this point in the history
  • Loading branch information
ramnes committed Nov 1, 2023
1 parent ef10aaa commit 246ba7b
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 @@ -85,22 +85,22 @@
for i in groups:
keys.extend(
[
# mod1 + letter of group = switch to group
# mod1 + group number = switch to group
Key(
[mod],
i.name,
lazy.group[i.name].toscreen(),
desc="Switch to group {}".format(i.name),
),
# mod1 + shift + letter of group = switch to & move focused window to group
# mod1 + 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 + letter of group = move focused window to group
# # mod1 + 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 246ba7b

Please sign in to comment.