raexera/yoru

Minimized window is missing

Opened this issue · 1 comments

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?

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" }),