From df3891bd994c5f951b24f1fc50983128a9212654 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Wed, 20 Jan 2016 15:03:56 +1100 Subject: [PATCH] awesome: Add binding to restore window --- .config/awesome/rc.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index e03034f4..d8afcd5c 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -420,6 +420,8 @@ clientkeys = awful.util.table.join( awful.layout.set(awful.layout.suit.tile) end end), + + awful.key({ modkey }, "n", awful.client.restore), awful.key({ modkey, "Shift" }, "f", function (c) c.fullscreen = not c.fullscreen end), awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end), awful.key({ modkey, "Shift" }, "space", awful.client.floating.toggle ),