summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorache <ache@ache.one>2019-03-08 05:30:43 +0100
committerache <ache@ache.one>2019-03-08 05:30:43 +0100
commitf93efb1f3ad341cbc0f7606e84d07da72db5d4f8 (patch)
treef5e1596c6d23d4070544ed02c3d38840743ffcad
parentAudio pulse (diff)
Kill command
-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),