diff options
author | ThanosApollo <[email protected]> | 2022-10-19 18:10:24 +0300 |
---|---|---|
committer | ThanosApollo <[email protected]> | 2022-10-19 18:10:24 +0300 |
commit | 0cf6c7fa4278cd09b3ce1457bd392f93f3eb2fbb (patch) | |
tree | 411ff9eb01e803d1ee78d71ceba13cf7b1ba3860 /.config/qtile | |
parent | 548e9644c14b8602dd8d9bed0cf55b5e94162651 (diff) |
Add rofi file browser
Diffstat (limited to '.config/qtile')
-rw-r--r-- | .config/qtile/keys.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/qtile/keys.py b/.config/qtile/keys.py index 6d752be..8776843 100644 --- a/.config/qtile/keys.py +++ b/.config/qtile/keys.py @@ -31,6 +31,9 @@ class MyKeys(): 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: '"), ), @@ -56,9 +59,6 @@ class MyKeys(): Key([self.mod], "period", lazy.next_screen(), ), - Key([self.mod], "comma", - lazy.prev_screen(), - ), ### Treetab controls Key([self.mod, "shift"], "h", lazy.layout.move_left(), |