From 3a8c5d9243b950147b51e5277e8b4ad3bd869be5 Mon Sep 17 00:00:00 2001 From: Thanos Apollo Date: Tue, 5 Dec 2023 14:35:15 +0200 Subject: qtile: Remove keychords Keychords are buggy on current qtile version --- .config/qtile/config.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to '.config/qtile/config.py') 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 -- cgit v1.2.3