diff options
author | Thanos Apollo <[email protected]> | 2023-12-05 14:35:15 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-12-05 14:35:34 +0200 |
commit | 3a8c5d9243b950147b51e5277e8b4ad3bd869be5 (patch) | |
tree | 739444a038f471418701d3d28ce1d39e01a23bdc /.config/qtile/config.py | |
parent | 5450b9cb4baaba9f6ed376fd2a453b529ea737a6 (diff) |
qtile: Remove keychords
Keychords are buggy on current qtile version
Diffstat (limited to '.config/qtile/config.py')
-rw-r--r-- | .config/qtile/config.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 74df04a..cfadad2 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -203,9 +203,8 @@ keys = [ Key([mod,"shift"],"c",lazy.next_layout(),), Key([mod],"q",lazy.window.kill(),), Key([mod,"shift"],"r",lazy.restart(),), - KeyChord([mod],"e", [ - Key([],"d", lazy.spawn("emacs --daemon")), - Key([],"e", lazy.spawn("emacs")),]), + Key([mod,"shift"], "d", lazy.spawn("emacs --daemon")), + Key([mod,"shift"], "e", lazy.spawn("emacs")), # Switch focus of monitors Key([mod],"period",lazy.next_screen(),), # Treetab controls |