Skip to content
This repository has been archived by the owner on Oct 17, 2024. It is now read-only.

Minimized window is missing #191

Open
Acebasein opened this issue Aug 16, 2024 · 1 comment
Open

Minimized window is missing #191

Acebasein opened this issue Aug 16, 2024 · 1 comment
Labels
question Further information is requested

Comments

@Acebasein
Copy link

Acebasein commented Aug 16, 2024

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?

@Acebasein Acebasein added the question Further information is requested label Aug 16, 2024
@timothfee
Copy link

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

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants