summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/qtile/keys.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/.config/qtile/keys.py b/.config/qtile/keys.py
index 6ab708f..cea2b5c 100644
--- a/.config/qtile/keys.py
+++ b/.config/qtile/keys.py
@@ -21,8 +21,10 @@ class MyKeys():
),
Key([self.mod, "shift"], "a",
lazy.spawn('anki'),
+ ),
Key([self.mod, "shift"], "m",
lazy.spawn("spotify"),
+ ),
Key([self.mod], "Tab",
lazy.spawn("dmenu_run -p 'Run: '"),
),
@@ -128,7 +130,8 @@ class MyKeys():
Key([self.mod],"F2",
lazy.spawn("setxkbmap gr"),
),
- ]
+ ]
+
return my_keys
def init_mouse(self):