I'm running Awesome 3.4.4 in floating mode (with titlebars), from Arch Linux. If I run any Windows program via Wine and minimize the client, then I can't raise and focus the client again by clicking on the client's entry in the tasklist. However, there are two other ways I've found to raise the minimized client:

1) By issuing the command: wmctrl -R <clientname>

2) By using an 'unminimize' keybinding thus (saw this is another thread):
    awful.key({ modkey, "Shift"   }, "n",
        function ()
            local allclients = client.get(mouse.screen)
            for _,c in ipairs(allclients) do
if c.minimized and c:tags()[mouse.screen] == awful.tag.selected(mouse.screen) then
                    c.minimized = false
                    client.focus = c
                    c:raise()
                    return
                end
            end
        end),

Is this a bug or is there something special about Wine clients which I'm missing or need to take account of?

--
To unsubscribe, send mail to awesome-unsubscr...@naquadah.org.

Reply via email to