diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 358725c..29cde4c 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -31,6 +31,7 @@ keys = [ Key([MOD], "j", lazy.layout.down(), desc="Move focus down"), Key([MOD], "k", lazy.layout.up(), desc="Move focus up"), Key([ALT], "Tab", lazy.layout.next(), desc="Move window focus to other window"), + Key([MOD], "dead_grave", lazy.next_screen(), desc="Move window focus to other screen"), # Move windows between left/right columns. Key([MOD, "shift"], "h", lazy.layout.shuffle_left(), desc="Move window to the left"), Key([MOD, "shift"], "l", lazy.layout.shuffle_right(), desc="Move window to the right"), diff --git a/.config/qtile/list_keybinds.py b/.config/qtile/list_keybinds.py index 39c406c..04a4c14 100644 --- a/.config/qtile/list_keybinds.py +++ b/.config/qtile/list_keybinds.py @@ -18,4 +18,4 @@ for key in c.keys: desc = key.desc matrix.append([keys, desc]) -os.system(f"echo \"{columnate(matrix)}\" | col -bx | xargs -I \"[]\" printf \"\t%s\n\" \"[]\" | less") +os.system(f"echo \"{columnate(matrix).replace('`', '̀ ')}\" | col -bx | xargs -I \"[]\" printf \"\t%s\n\" \"[]\" | less")