diff options
author | ThanosApollo <[email protected]> | 2022-10-09 10:21:56 +0300 |
---|---|---|
committer | ThanosApollo <[email protected]> | 2022-10-09 10:21:56 +0300 |
commit | 2ae54c6c90fe3226eb0877fff28c28223f00b5d2 (patch) | |
tree | bf96a3330823a794ef3f89d9a4a28e6d081be9c0 /.config/qtile | |
parent | 2e94e29ea4ddef3433f1df8a76607ceeea50e16e (diff) |
fix typo
Diffstat (limited to '.config/qtile')
-rw-r--r-- | .config/qtile/keys.py | 5 |
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): |