diff options
-rw-r--r-- | config/awesome/rc.lua | 5 |
1 files 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) |