raexera / yoru

A custom Linux environment built on AwesomeWM
GNU General Public License v3.0
3.48k stars 198 forks source link

Minimized window is missing #191

Open Acebasein opened 2 months ago

Acebasein commented 2 months ago

Hello,

I'm new to Awesome and just installed your rice yesterday on my Arch Linux box. Great job, wonderful look & feel and experience!

I'm facing a strange problem though. When I minimize the window using the yellow button (not with hot keys), I'm not able to bring it back. All I see is a blurred small transparent rectangle when I'm hovering over the top middle bar (tags). Tried Super+n and Super+m but no luck. I don't want to raise this under the Bug report since I'm not sure whether it's a knowledge gap or a real issue.

Could someone please help?

Also is there is anyway I can disable launching the "Dashboard" whenever I click on the top middle bar?

timothfee commented 1 month ago

So I think I figured it out, for some reason the hotkey for un-minimize that is in the Yoru repo seems to be bugged, I replaced it with the one from the default AwesomeWM rc.lua and it is working well. Here is the code I used:

```
--- Un-minimize windows
    awful.key({ mod, ctrl }, "n", function()
        local c = awful.client.restore()
        -- Focus restored client
        if c then
            c:activate({ raise = true, context = "key.unminimize" })
        end
    end, { description = "restore minimized", group = "client" }),