From d5e8bd043e0b8ed8554d62060340062587b1de9b Mon Sep 17 00:00:00 2001 From: buffet Date: Sat, 15 May 2021 17:13:06 +0000 Subject: [PATCH] Use mod+ret to send to master --- awesome/.config/awesome/configuration/client/keys.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awesome/.config/awesome/configuration/client/keys.lua b/awesome/.config/awesome/configuration/client/keys.lua index fa0a800..e61c0d6 100644 --- a/awesome/.config/awesome/configuration/client/keys.lua +++ b/awesome/.config/awesome/configuration/client/keys.lua @@ -16,7 +16,7 @@ clientKeys = gears.table.join( {description = "close", group = "client"}), awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle , {description = "toggle floating", group = "client"}), - awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end, + awful.key({ modkey, }, "Return", function (c) c:swap(awful.client.getmaster()) end, {description = "move to master", group = "client"}), awful.key({ modkey, }, "o", function (c) c:move_to_screen() end, {description = "move to screen", group = "client"}),