diff --git a/rc.lua b/rc.lua index a34ebe5..b74e32e 100644 --- a/rc.lua +++ b/rc.lua @@ -281,10 +281,10 @@ globalkeys = gears.table.join( awful.key({ modkey, "Shift" }, "k", function() awful.client.swap.byidx(-1) end, { description = "swap with previous client by index", group = "client" }), - awful.key({ modkey }, "o", function() + awful.key({ modkey }, "b", function() awful.screen.focus_relative(1) end, { description = "focus the next screen", group = "screen" }), - awful.key({ modkey }, "i", function() + awful.key({ modkey }, "n", function() awful.screen.focus_relative(-1) end, { description = "focus the previous screen", group = "screen" }), awful.key({ modkey }, "u", awful.client.urgent.jumpto, { description = "jump to urgent client", group = "client" }), @@ -405,7 +405,7 @@ clientkeys = gears.table.join( awful.key({ modkey, "Control" }, "Return", function(c) c:swap(awful.client.getmaster()) end, { description = "move to master", group = "client" }), - awful.key({ modkey, "Shift" }, "i", function(c) + awful.key({ modkey, "Shift" }, "n", function(c) c:move_to_screen() end, { description = "move to screen", group = "client" }), awful.key({ modkey }, "m", function(c)