awesomerc: add Mod4+t to set client on-Top

Signed-off-by: Adrian C. (anrxc) <anrxc@sysphere.org>
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Adrian C. (anrxc) 2010-03-04 03:46:45 +01:00 committed by Julien Danjou
parent bafe41e174
commit 9f056716b9
2 changed files with 2 additions and 1 deletions

View File

@ -227,6 +227,7 @@ clientkeys = awful.util.table.join(
awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ), awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ),
awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end), awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
awful.key({ modkey, }, "o", awful.client.movetoscreen ), awful.key({ modkey, }, "o", awful.client.movetoscreen ),
awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end),
awful.key({ modkey, }, "n", function (c) c.minimized = not c.minimized end), awful.key({ modkey, }, "n", function (c) c.minimized = not c.minimized end),
awful.key({ modkey, }, "m", awful.key({ modkey, }, "m",
function (c) function (c)

View File

@ -98,7 +98,7 @@ Clients
*Mod4 + Shift + c*:: *Mod4 + Shift + c*::
Kill focused client. Kill focused client.
*Mod4 + t*:: *Mod4 + t*::
Mark a client. Set client on-top.
Navigation Navigation
~~~~~~~~~~ ~~~~~~~~~~