fix the window movement keys

This commit is contained in:
Andreas Zweili 2021-11-19 11:49:30 +01:00
parent db3064dfac
commit b29c55d250
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ terminal = guess_terminal()
keys = [
# Switch between windows in current stack pane
Key([mod], "k", lazy.layout.down()),
Key([mod], "j", lazy.layout.up()),
Key([mod], "j", lazy.layout.down()),
Key([mod], "k", lazy.layout.up()),
Key([mod], "h", lazy.layout.left()),
Key([mod], "l", lazy.layout.right()),