Icon missing when application is launched
What will most probably solve your problem is to do the following:
- Open the application
When it is running, open a terminal and type:
xprop WM_CLASS
Then click on the open application window.
The output will look like (example
gedit
):WM_CLASS(STRING) = "gedit", "Gedit"
Use the first part (in this case would be
gedit
), to compose a line in your.desktop
file:StartupWMClass=<string>
(replace
<string>
with the actual (first part of the) output ofxprop WM_CLASS
, e.g.StartupWMClass=gedit
)
Now try again (you might have to log out / in), most likely the application will appear in the launcher under its own icon.
Explanation
- When an application starts up correctly from a launcher (
.desktop
file), but another icon appears with only a generic icon (question mark), it is most likely that the application window and the launcher do not connect for some reason, and the launcher does not recognize the application's window as "his". This is often the case when a script or a non- standard application (-command) is used. In those cases theStartupWMClass=
line is often the solution.
for me xprop|grep WM_CLASS
gave WM_CLASS(STRING) = "sun-awt-X11-XFramePeer", "jetbrains-pycharm-ce"
(I was having this issue with pycharm for python)
It was the sun-awt-X11-XFramePeer
that I needed as the string in my .desktop file (without quotes) - Thanks!