1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2024-10-22 12:31:23 +00:00

Merge pull request #222 from ydeweerdt/multiscreen-navigation

template: allow client navigation accross multiple screens
This commit is contained in:
Luca CPZ 2018-02-13 11:10:04 +01:00 committed by GitHub
commit 4a03097d3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -267,25 +267,25 @@ globalkeys = my_table.join(
-- By direction client focus
awful.key({ modkey }, "j",
function()
awful.client.focus.bydirection("down")
awful.client.focus.global_bydirection("down")
if client.focus then client.focus:raise() end
end,
{description = "focus down", group = "client"}),
awful.key({ modkey }, "k",
function()
awful.client.focus.bydirection("up")
awful.client.focus.global_bydirection("up")
if client.focus then client.focus:raise() end
end,
{description = "focus up", group = "client"}),
awful.key({ modkey }, "h",
function()
awful.client.focus.bydirection("left")
awful.client.focus.global_bydirection("left")
if client.focus then client.focus:raise() end
end,
{description = "focus left", group = "client"}),
awful.key({ modkey }, "l",
function()
awful.client.focus.bydirection("right")
awful.client.focus.global_bydirection("right")
if client.focus then client.focus:raise() end
end,
{description = "focus right", group = "client"}),