mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2024-12-22 23:29:36 +01:00
Use a single list for wm_classes as it also works
This commit is contained in:
parent
03e6b3a4d5
commit
398935f205
@ -5,16 +5,16 @@ from .keys import keys, mod
|
|||||||
|
|
||||||
groups = [Group(i) for i in "1234567890"]
|
groups = [Group(i) for i in "1234567890"]
|
||||||
|
|
||||||
browsers = [Match(wm_class="firefox"), Match(wm_class="Google-chrome")]
|
browsers = [Match(wm_class=["firefox", "Google-chrome"])]
|
||||||
file_managers = [Match(wm_class="Thunar")]
|
file_managers = [Match(wm_class="Thunar")]
|
||||||
video_players = [Match(wm_class="streamlink-twitch-gui"), Match(wm_class="mpv")]
|
video_players = [Match(wm_class=["streamlink-twitch-gui", "mpv"])]
|
||||||
groups = [
|
groups = [
|
||||||
Group("1"),
|
Group("1"),
|
||||||
Group("2", matches=[Match(wm_class="VirtualBox Manager")]),
|
Group("2", matches=[Match(wm_class="VirtualBox Manager")]),
|
||||||
Group("3", matches=[Match(wm_class="Thunderbird")]),
|
Group("3", matches=[Match(wm_class="Thunderbird")]),
|
||||||
Group("4", matches=[Match(wm_class="st-256color")]),
|
Group("4", matches=[Match(wm_class="st-256color")]),
|
||||||
Group("5", matches=file_managers),
|
Group("5", matches=file_managers),
|
||||||
Group("6"),
|
Group("6", matches=[Match(wm_class="ModernDeck")]),
|
||||||
Group("7", matches=browsers),
|
Group("7", matches=browsers),
|
||||||
Group("8", matches=video_players),
|
Group("8", matches=video_players),
|
||||||
Group("9"),
|
Group("9"),
|
||||||
|
Loading…
Reference in New Issue
Block a user