From 0ddeb82ecb0ff1fe8a71a195f548b23c3b70e957 Mon Sep 17 00:00:00 2001 From: Peter Palfrader Date: Mon, 1 Feb 2021 19:23:31 +0100 Subject: Update on-top hotkeys --- config/awesome/rc.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/awesome/rc.lua b/config/awesome/rc.lua index a2b44ba..76fb9de 100644 --- a/config/awesome/rc.lua +++ b/config/awesome/rc.lua @@ -467,7 +467,7 @@ clientkeys = awful.util.table.join( end), awful.key({ modkey, }, "Return", function (c) c:swap(awful.client.getmaster()) end), awful.key({ modkey, }, "o", function (c) c:move_to_screen() end), - awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end), + -- awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end), -- weasel -- awful.key({ "Mod1" }, "q", function (c) @@ -548,7 +548,8 @@ clientkeys = awful.util.table.join( -- awful.key({ modkey }, ";" , function (c) c:raise() end), -- awful.key({ modkey }, "/" , function (c) c:lower() end), awful.key({ modkey }, "Up" , function (c) c:raise() end), - awful.key({ modkey }, "Down" , function (c) c:lower() end), + awful.key({ modkey }, "Down" , function (c) c.ontop = false c:lower() end), + awful.key({ modkey, "Shift" }, "Up" , function (c) c.ontop = not c.ontop end), awful.key({ modkey }, "Escape", function (c) c:kill() end) -- cgit v1.2.3