Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
3
rated 0 times [  3] [ 0]  / answers: 1 / hits: 12695  / 1 Year ago, thu, may 25, 2023, 5:31:43

I recently installed the latest version of Eclipse that I downloaded from the Eclipse website. It is located at /opt/eclipse. I have a symbolic link form /usr/bin/eclipse to /opt/eclipse/eclipse. I also have a file named eclipse.desktop in /usr/share/applications, whose contents are as follows:



[Desktop Entry]
Name=Eclipse
Comment=Eclipse C++ IDE
Exec=/opt/eclipse/eclipse
Icon=/opt/eclipse/icon.xpm
Terminal=false
Type=Application
Categories=Development;
StartupWMClass=Eclipse


/opt/eclipse/icon.xpm exists. However, the icon is not shown in the dock or in the list of applications. Any ideas? I'm on Ubuntu 14.04.



EDIT: Tried updating StartupWMClass, doesn't help. Here's a screenshot that captures the situation:



[enter image description here]


More From » unity

 Answers
3

I am pretty sure you have another eclipse.desktop file in ~/.local/share/applications. The one you show in the image looks fine. Most likely, you ran Eclipse a single time before moving it to /opt. Then a .desktop file is automatically created in ~/.local/share/applications.


.desktop files in ~/.local/share/applications overrule global ones in /usr/share/applications, which means that whatever you change to the global one, it has no effect whatsoever; the one in ~/.local/share/applications takes precedence ans is the one that shows in the Launcher.


If so, remove the one in ~/.local/share/applications, log out and back in.




EDIT




After your latest comment, it becomes clear what happened: It turns out you previously made a local launcher with alacarte. Alacarte does not handle icon paths correctly when using absolute paths; alacarte simply leaves out the icon's extension, but extensions are needed when using absolute paths.


See also here.


[#16527] Saturday, May 27, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
rinstracte

Total Points: 221
Total Questions: 114
Total Answers: 120

Location: France
Member since Fri, Jan 28, 2022
2 Years ago
;