Last active
September 14, 2024 02:07
-
-
Save twistedpair/fe98234920bf7ad4b74db78f213fda20 to your computer and use it in GitHub Desktop.
Add desktop launcher for Intellij IDEA on Ubuntu KDE
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add the following to /usr/share/applications/idea.desktop | |
# You can now search in launcher (e.g ALT+SPACE for IDEA or Intellij and launch) | |
# Note: I install IDEA releases in /opt/idea/ and symlink to the current version with head/, hence /opt/idea/head/ | |
[Desktop Entry] | |
Version=2017.2 | |
Name=Intellij Ultimate Edition | |
Comment=The Drive to Develop | |
GenericName=Intellij IDEA | |
# Update with your local install location | |
Exec=/opt/idea/head/bin/idea.sh | |
Icon=/opt/idea/head/bin/idea.png | |
Type=Application | |
Terminal=false | |
StartupNotify=true | |
Categories=GNOME;GTK;Development; | |
MimeType=x-scheme-handler/idea; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment