In the default rc.lua, there is something like:
clientbuttons = awful.util.table.join(
awful.button({ }, 1, function (c) client.focus = c; c:raise() end),
awful.button({ modkey }, 1, awful.mouse.client.move),
awful.button({ modkey }, 3, awful.mouse.client.resize))I would like to use a double click event. More specifically, if a user double-right-clicks on a focused window, I want to kill() that window. How can I do this in lua? I'm used to these things pre-implemented as in gtk, etc. -- Paul
