summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Schodet2019-05-28 00:57:59 +0200
committerNicolas Schodet2019-05-28 00:57:59 +0200
commit1845e31ffef72ea233520f0696bad4c59f339b9d (patch)
tree9b132a627d1b8dafd488922649f081f98a6a9ffb
parent5e061d3cc867f6d10a30b3bca3e6943fce8626d5 (diff)
Bind kill on "'" on bépo
-rw-r--r--rc.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/rc.lua b/rc.lua
index a3b1099..27826c1 100644
--- a/rc.lua
+++ b/rc.lua
@@ -381,6 +381,8 @@ clientkeys = awful.util.table.join(
{description = "toggle fullscreen", group = "client"}),
awful.key({ modkey, }, "w", function (c) c:kill() end,
{description = "close", group = "client"}),
+ awful.key({ modkey, }, "#57", function (c) c:kill() end,
+ {description = "close", group = "client"}),
awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ,
{description = "toggle floating", group = "client"}),
awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end,