diff options
Diffstat (limited to '.config')
-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(), |