I had problems to change the size of clients.
I use this keybinding,

keybinding({ modkey, "Mod1" }, "Up", function () awful.client.moveresize(0,
0, 0, -5) end):add()
keybinding({ modkey, "Mod1" }, "Down", function ()
awful.client.moveresize(0, 0, 0, 5) end):add()
keybinding({ modkey, "Mod1" }, "Left", function ()
awful.client.moveresize(0, 0, -5, 0) end):add()
keybinding({ modkey, "Mod1" }, "Right", function ()
awful.client.moveresize(0, 0, 5, 0) end):add()

up and left, ok
but right and down keys not working

any idea ?
thanks.

Reply via email to