It sounds easy, but hell, it is not.
I want a desktop icon that executes:
/home/<username>/dev/intellij/bin/idea.sh
if I create a sh file on desktop, it opens with leafpad.
If I create ln -s, nothing happens double clicking it.
The difference in this question to the others, is that this does not use unity. And it requires the solution to be without creating a .desktop file with a [Desktop Entry] that nobody easily seems to understand.
~
in a.desktop
file, use the command:/home/<yourname>/intellij/bin/idea.sh
. but the file then needs to be executable. Else use:/bin/bash /home/<yourname>/intellij/bin/idea.sh
– Jacob Vlijm Jul 27 '15 at 22:23