My Qtile window manager configuration
git clone https://github.com/m-col/qtile-config
Files | Refs | Readme

Commit 3b425f791066bcea44962e73079e2cf7249dab96
Parent: d060471705f2c9df7bd3fd19ea4012e28c0ee7d0
Author: mcol <mcol@posteo.net>
Date: 2022-09-09 07:13:15 +0100
Committer: mcol <mcol@posteo.net>
Committed: 2022-09-09 07:13:15 +0100

group change

groups.py Modified

@@ -24,18 +24,18 @@
 
 mod = "mod1" if int(os.environ.get("QTILE_XEPHYR", 0)) else "mod4"
 
-keys_group: tuple[list[str], str, Any, str] = []
+keys_group: list[tuple[list[str], str, Any, str]] = []
 
 
 groups: list[Group] = [
     Group("1", label="term"),
     Group("2", label="term"),
     Group("3", label="term"),
-    Group("4", label="term"),
+    Group("4", label="spot", matches=[Match(title="spotify")]),
     Group("q", label="html", matches=[Match(wm_class="firefox")]),
     Group("w", label="imap", matches=[Match(wm_class="geary"), Match(title="Geary")]),
     Group("e", label="work"),
-    Group("r", label="spot", matches=[Match(title="spotify")]),
+    Group("r", label="work"),
 ]