René D. Obermüller

Results 202 comments of René D. Obermüller

I think Task (7) is not the correct task we should be looking at. My (limited) understanding of wlr/taskbar is that all apps have a Task object representation in the...

Apparently, the icon theme can be empty, so the for loop in `handle_app_id` isn't entered. This means that the constructor for Taskbar has not run, but the Tasks already get...

Workaround (a different one) is now in the master branch via PR #3393 . @abc-nix Any chance you can check if it solves the issue for you?

How an application checks for another instance running or what it does in that case is up to the application, so I think each application will have to be looked...

After looking into this a bit more, it is possible to activate a tray icon with a DBus query. E.g. this opened a discord window for me: ``` qdbus :1.577...

Might want to try an explicit flush for output, e.g. see #2358

Have you checked whether this is still happening with 0.10.3? I'm thinking a453ea3c70195803e9962a97f9243c0c78d4ecdc might have fixed it, which is included in 0.10.3.

OK, it works for me. I'm using a limited repro. ![satty-20240701-17:14:07](https://github.com/Alexays/Waybar/assets/29629287/799c62b6-bc41-4035-9f43-467fc89c9970) ``` { "layer": "top", // Waybar at top layer "position": "top", // Waybar position (top|bottom|left|right) "height" : 50, "modules-center":...

No problem, that explains it :) good to hear it's working now.

Yes. Mpris is using `set_tooltip_text` rather than `set_tooltip_markup`. https://github.com/Alexays/Waybar/blob/15e1547661bfc5fe9b3d45bb0d9cea11cf07db7f/src/modules/mpris/mpris.cpp#L726 Somebody would have to change that. That doesn't look difficult for the mpris module. And then the next issue is about...