I am having problems with the IntelliJ installation. The installer wont create a shortcut so I do have to start IntelliJ every time with the "./idea.sh" command. Which is pretty enoying if you everytime have to navigate there to start IntelliJ.
Version: 2018.2 Build: 182.3684.101
IntelliJ IDEA 2018.2
If I could get some advices/help I would be very thankful. I am relatively new to Linux so I would really love an instruction :S
It is quite simple, in the main menu before opening a project there is a quick setting which will add IntelliJ as shortcut in Ubuntu. Go to "Configure" in the lower right corner and then select "Create Desktop entry".
As an alternative to @Dominik's answer, you can take the command line approach. Assuming that your IntelliJ installation files reside in
/opt/idea/bin
,Create a Desktop Entry to show up in Activities
Create the file
/usr/share/applications/idea.desktop
.touch
,vi
ornano
should work, if you havesudo
enabled.In that file, enter this:
Et voilà!
Make a shortcut on your local Desktop
Copy the file you created above into your local Desktop directory
cp /usr/share/applications/idea.desktop /home/[user.name]/Desktop/
Adjust file permissions as appropriate
chmod 0755 /home/[user.name]/Desktop/idea.desktop
Et voilà!