In my case, I manually installed Eclipse and added it in the Programming submenu. One of the Eclipse plugins that I need has an issue if I start Eclipse from a directory where the current user does not have write permissions - the install location.
I tried to change the start command to all the following variations:
- Code: Select all
cd ~/Projects/workspace; /opt/eclipse/eclipse
(cd ~/Projects/workspace; /opt/eclipse/eclipse)
bash -c "cd ~/Projects/workspace; /opt/eclipse/eclipse"
but none of them work - eclipse fails to start. Any ideas?

