Awesome: Change window switch order

master
Pierre Neidhardt 2014-11-26 14:35:52 +01:00
parent 51ad95d2de
commit 709128b4f7
1 changed files with 2 additions and 2 deletions

View File

@ -321,12 +321,12 @@ globalkeys = awful.util.table.join(
awful.key({ modkey }, "k",
function ()
awful.client.focus.byidx( 1)
awful.client.focus.byidx(-1)
if client.focus then client.focus:raise() end
end),
awful.key({ modkey }, "j",
function ()
awful.client.focus.byidx(-1)
awful.client.focus.byidx(1)
if client.focus then client.focus:raise() end
end),