Update .config/qtile/config.py

This commit is contained in:
Vitor Gonçalves 2023-05-21 07:02:24 -03:00
parent 39feacf92b
commit e11cc0cef6
Signed by: vitorg
GPG Key ID: B90BF113DF56EB41
1 changed files with 5 additions and 12 deletions

View File

@ -7,7 +7,6 @@ terminal = "alacritty"
browser = "firefox"
run_prompt = "dmenu_run"
# colors
accent = "#ea6962"
accent2 = "#d8a657"
@ -85,17 +84,11 @@ for i in groups:
lazy.group[i.name].toscreen(),
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),
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
# Key([mod, "shift"], i.name, lazy.window.togroup(i.name),
# desc="move focused window to group {}".format(i.name)),
# mod1 + shift + letter of group = move focused window to group
Key([mod, "shift"], i.name,
lazy.window.togroup(i.name),
desc="move focused window to group {}".format(i.name)),
]
)