diff --git a/clients/binds/keys.lua b/clients/binds/keys.lua index 7c94bf3..3bef997 100755 --- a/clients/binds/keys.lua +++ b/clients/binds/keys.lua @@ -36,6 +36,32 @@ return gears.table.join( } ), + + + + awful.key( {"Mod4"}, "Right", + function () + awful.client.focus.byidx(1) + end, + { + description = "Focus next", + group = "Client" + } + ), + + awful.key( {"Mod4"}, "Left", + function () + awful.client.focus.byidx(-1) + end, + { + description = "Focus previous", + group = "Client" + } + ), + + + + awful.key( {"Mod4", "Shift"}, "c", function (c) c:kill() diff --git a/core/keybinds.lua b/core/keybinds.lua index ba9f84c..53b3136 100755 --- a/core/keybinds.lua +++ b/core/keybinds.lua @@ -158,30 +158,6 @@ return gears.table.join( } ), - - - -- Clients - awful.key( {"Mod4"}, "Left", - function () - awful.client.focus.byidx( 1) - end, - { - description = "Focus next", - group = "Client" - } - ), - - awful.key( {"Mod4"}, "Right", - function () - awful.client.focus.byidx(-1) - end, - { - description = "Focus previous", - group = "Client" - } - ) - - --[[ awful.key( {"Mod4", "Shift"}, "j", function ()