diff options
author | ThanosApollo <[email protected]> | 2022-10-28 05:33:26 +0300 |
---|---|---|
committer | ThanosApollo <[email protected]> | 2022-10-28 05:33:26 +0300 |
commit | 5c7ac253603a92a062f2b13f25cc99e0e7f3647d (patch) | |
tree | 919303523837902e74a654f32586d158d617a644 /.config/qtile/keys.py | |
parent | d4c5cd5e40d6ff801f7e0fff61036adfe8f0742f (diff) |
Update qtile
Diffstat (limited to '.config/qtile/keys.py')
-rw-r--r-- | .config/qtile/keys.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.config/qtile/keys.py b/.config/qtile/keys.py index 8776843..538d57f 100644 --- a/.config/qtile/keys.py +++ b/.config/qtile/keys.py @@ -5,7 +5,6 @@ from libqtile.command import lazy from libqtile.config import Click, Drag - class MyKeys(): def __init__(self,mod,browser,term,editor): self.mod = mod @@ -28,12 +27,12 @@ class MyKeys(): Key([self.mod], "Tab", lazy.spawn("rofi -show drun"), ), + Key([self.mod], "r", + lazy.spawn("rofi -show run"), + ), Key([self.mod], "w", lazy.spawn("rofi -show window"), ), - Key(["control"], "f", - lazy.spawn("rofi -show filebrowser"), - ), Key([self.mod], "p", lazy.spawn("passmenu -p 'Password for: '"), ), |