rc.lua: Resize clients via the titlebar

Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Uli Schlachter 2012-10-29 09:46:56 +01:00
parent c6658742ff
commit a526e0a559
1 changed files with 5 additions and 0 deletions

View File

@ -405,6 +405,11 @@ client.connect_signal("manage", function (c, startup)
client.focus = c
c:raise()
awful.mouse.client.move(c)
end),
awful.button({ }, 3, function()
client.focus = c
c:raise()
awful.mouse.client.resize(c)
end)
))