mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-06-27 20:18:49 +02:00
bindings: invert the way we switch focus between screens
For some reason, the screens seem to be in inverted order.
This commit is contained in:
parent
04d9fb8da6
commit
6e5e96d67e
1 changed files with 2 additions and 2 deletions
|
@ -192,11 +192,11 @@ config.keys.global = awful.util.table.join(
|
|||
awful.key({ modkey, }, "u", toggle_im,
|
||||
"Toggle Pidgin conversation window"),
|
||||
awful.key({ modkey, "Control" }, "j", function ()
|
||||
screen_focus( 1)
|
||||
screen_focus(-1)
|
||||
end,
|
||||
"Jump to next screen"),
|
||||
awful.key({ modkey, "Control" }, "k", function ()
|
||||
screen_focus(-1)
|
||||
screen_focus( 1)
|
||||
end),
|
||||
|
||||
keydoc.group("Layout manipulation"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue