From fda2c091db6843985f6fbc17106c6899b70e2c14 Mon Sep 17 00:00:00 2001 From: "Adrian C. (anrxc)" Date: Thu, 4 Mar 2010 03:46:45 +0100 Subject: [PATCH] awesomerc: add Mod4+t to set client on-Top Signed-off-by: Adrian C. (anrxc) Signed-off-by: Julien Danjou --- awesomerc.lua.in | 1 + manpages/awesome.1.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/awesomerc.lua.in b/awesomerc.lua.in index 0c59522a1..f46be46be 100644 --- a/awesomerc.lua.in +++ b/awesomerc.lua.in @@ -225,6 +225,7 @@ clientkeys = awful.util.table.join( awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end), awful.key({ modkey, }, "o", awful.client.movetoscreen ), awful.key({ modkey, "Shift" }, "r", function (c) c:redraw() end), + 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, }, "m", function (c) diff --git a/manpages/awesome.1.txt b/manpages/awesome.1.txt index 523f1c247..ee42a9028 100644 --- a/manpages/awesome.1.txt +++ b/manpages/awesome.1.txt @@ -100,7 +100,7 @@ Clients *Mod4 + Shift + c*:: Kill focused client. *Mod4 + t*:: - Mark a client. + Set client on-top. Navigation ~~~~~~~~~~