https://bugs.kde.org/show_bug.cgi?id=454418
Evert Vorster <evors...@protonmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |evors...@protonmail.com --- Comment #2 from Evert Vorster <evors...@protonmail.com> --- Yes, this is an issue, and there is a need to be able to disable the appmenu daemon for specific applications. Here is an interesting Reddit Post: https://www.reddit.com/r/kde/comments/vs62i0/comment/if3u9hn/?utm_source=reddit&utm_medium=web2x&context=3 Putting this into action for my pain point which is OBS studio under Wayland, I wrote this little script: ``` [evert@Evert scripts]$ cat obs_script #!/bin/bash qdbus org.kde.kded5 /kded org.kde.kded5.loadModule "appmenu" obs & qdbus org.kde.kded5 /kded org.kde.kded5.unloadModule "appmenu" ``` I made the script executable with chmod a+x [script_name] Then I edit the application in the start menu to point to the script rather than the application. For Davinci something similar might do the trick. Obviously, having to hack together scripts is less than ideal. A proper fix would be to be able to enable the appmenu daemon for certain applications through the UI. The logical place for this would have to be the "More Actions" menu that you get when right-clicking on an open application's icon in it's titlebar. (The name for which escapes me now) I'll attach a screenshot. -- You are receiving this mail because: You are watching all bug changes.