From 49f302ca3469a3eb5fdfd770b79bb438451a79b8 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Mon, 16 Jul 2012 15:10:44 +0200 Subject: [PATCH] bindings: change Mod4 + t to `raise` --- rc/bindings.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rc/bindings.lua b/rc/bindings.lua index 6f297ed..8ad7b10 100644 --- a/rc/bindings.lua +++ b/rc/bindings.lua @@ -98,8 +98,8 @@ config.keys.client = awful.util.table.join( awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle, "Toggle floating"), awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end, "Switch with master window"), - awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end, - "Stay on top"), + awful.key({ modkey, }, "t", function (c) c:raise() end, + "Raise window"), awful.key({ modkey, }, "i", dbg, "Get client-related information"), awful.key({ modkey, }, "m",