From bbf3e0dc148d3447e2e459a4afa2f7bee262ee21 Mon Sep 17 00:00:00 2001 From: Blista Kanjo Date: Mon, 18 Oct 2021 23:47:57 -0400 Subject: better client window keybindings --- awesome/rc.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'awesome/rc.lua') diff --git a/awesome/rc.lua b/awesome/rc.lua index 3649d26..9c41d11 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -345,7 +345,7 @@ globalkeys = gears.table.join( awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(-1) end, {description = "select previous", group = "layout"}), - awful.key({ modkey, "Shift" }, ",", + awful.key({ modkey }, ",", function () local c = awful.client.restore() -- Focus restored client @@ -389,9 +389,9 @@ clientkeys = gears.table.join( {description = "toggle floating", group = "client"}), -- Sticky Window and Always on top toggle - awful.key({modkey, "Shift" }, ".", function(c) c.ontop = not c.ontop end, + awful.key({ modkey }, ".", function(c) c.ontop = not c.ontop end, {description = "toggle always on top", group = "client"}), - awful.key({ modkey, "Shift" }, "slash", function (c) c.sticky = not c.sticky end, + awful.key({ modkey }, "slash", function (c) c.sticky = not c.sticky end, {description = "toggle sticky", group = "client"}), -- Original Keep On Top Function @@ -407,7 +407,7 @@ clientkeys = gears.table.join( {description = "move to master", group = "client"}), awful.key({ modkey, }, "o", function (c) c:move_to_screen() end, {description = "move to screen", group = "client"}), - awful.key({ modkey, "Shift" }, "m", + awful.key({ modkey }, "m", function (c) -- The client currently has the input focus, so it cannot be -- minimized, since minimized clients can't have the focus. -- cgit v1.2.3