summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rc.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/rc.lua b/rc.lua
index ffd391a..ca8ac45 100644
--- a/rc.lua
+++ b/rc.lua
@@ -708,6 +708,9 @@ awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.ful
awful.key({ modkey, }, "c", function (c)
c:kill()
end),
+ awful.key({ modkey, "Mod1" }, "h", function (c)
+ c:kill()
+ end),
awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle,
{description = "Set floating layout", group = "client"}),
awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),