How to add Eclipse launcher in Gnome dock
In this post I’ll show how to add an Eclipse launcher as a favorite (pinned) application in the Gnome dock (I’m using Ubuntu Artful). This post is inspired by http://blog.ttoine.net/en/2016/06/30/how-to-add-eclipse-neon-launcher-in-gnu-linux-menus-and-launchers/. First of all, you need to create a .desktop file, where you need to specify the full path of your Eclipse installation:
1 2 3 4 5 6 7 8 9 |
[Desktop Entry] Version=Oxygen Name=Eclipse Java Comment=Eclipse is an IDE Exec=/home/bettini/eclipse/java-latest-released/eclipse/eclipse Icon=/home/bettini/eclipse/java-latest-released/eclipse/icon.xpm Terminal=false Type=Application Categories=Utility;Application;Development; |
This is relative […]