From 3b55053257efa7bf69ab70f06e2a940e3b1a2f2d Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Mon, 16 Jul 2012 21:40:13 +0200 Subject: [PATCH] bindings: add a binding to make a window sticky --- rc/bindings.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rc/bindings.lua b/rc/bindings.lua index 8ad7b10..1cdab29 100644 --- a/rc/bindings.lua +++ b/rc/bindings.lua @@ -100,6 +100,8 @@ config.keys.client = awful.util.table.join( "Switch with master window"), awful.key({ modkey, }, "t", function (c) c:raise() end, "Raise window"), + awful.key({ modkey, }, "s", function (c) c.sticky = not c.sticky end, + "Stick window"), awful.key({ modkey, }, "i", dbg, "Get client-related information"), awful.key({ modkey, }, "m",