Skip to content

Instantly share code, notes, and snippets.

@felipebizz
Last active August 29, 2015 14:13
Show Gist options
  • Select an option

  • Save felipebizz/7dd60b66d05d4d943f59 to your computer and use it in GitHub Desktop.

Select an option

Save felipebizz/7dd60b66d05d4d943f59 to your computer and use it in GitHub Desktop.
Create a Intellij launcher in desktop Ubuntu
// create file:
sudo vim /usr/share/applications/intellij.desktop
// add the following
[Desktop Entry]
Version=13.0
Type=Application
Terminal=false
Icon[en_US]=/opt/idea/bin/idea.png
Name[en_US]=IntelliJ
Exec=/opt/idea/bin/idea.sh
Name=IntelliJ
Icon=/opt/idea/bin/idea.png
// mod permissions
sudo chmod 644 /usr/share/applications/intellij.desktop
sudo chown root:root /usr/share/applications/intellij.desktop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment