bindings: add a binding to make a window sticky

This commit is contained in:
Vincent Bernat 2012-07-16 21:40:13 +02:00
parent f7f6104f4b
commit 3b55053257

View file

@ -100,6 +100,8 @@ config.keys.client = awful.util.table.join(
"Switch with master window"), "Switch with master window"),
awful.key({ modkey, }, "t", function (c) c:raise() end, awful.key({ modkey, }, "t", function (c) c:raise() end,
"Raise window"), "Raise window"),
awful.key({ modkey, }, "s", function (c) c.sticky = not c.sticky end,
"Stick window"),
awful.key({ modkey, }, "i", dbg, awful.key({ modkey, }, "i", dbg,
"Get client-related information"), "Get client-related information"),
awful.key({ modkey, }, "m", awful.key({ modkey, }, "m",