From dc314d62baec6fcea7eeb8d3053d9ddb99c0a609 Mon Sep 17 00:00:00 2001 From: Wilfried OLLIVIER Date: Sun, 22 Oct 2023 12:02:23 +0200 Subject: [PATCH] Change screen shortcuts --- rc.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)