> tyring awesome again. Would you let me know how i can focus/or unminimize
> after minimize a window.
> I needed to redraw or click application to do that. Hope you understand the
> question.
Dear Ekram,
Here is a workaround that someone made (either on this list or a forum
somewhere). Consider setting this keybinding:
awful.key({ modkey, "Shift" }, "n",
function()
local tag = awful.tag.selected()
for i=1, #tag:clients() do
tag:clients()[i].minimized=false
tag:clients()[i]:redraw()
end
end),
This would bind modifier + shift + n (as opposed to modifier + n which
is for minimizing) to unminimize all windows on the current tag.
--
To unsubscribe, send mail to [email protected].