Skip to content

Instantly share code, notes, and snippets.

@llbbl
Last active March 9, 2022 05:15
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save llbbl/b08ed19281c06483242b to your computer and use it in GitHub Desktop.
Save llbbl/b08ed19281c06483242b to your computer and use it in GitHub Desktop.
Howto Add PhpStorm to Ubuntu Unity Launcher

PhpStorm 7.0x

Create a file ~/.local/share/applications/jetbrains-phpstorm.desktop

With the following value:

[Desktop Entry]
Version=1.0
Type=Application
Name=PhpStorm
Icon=/home/USER/PhpStorm-133.982/bin/webide.png
Exec="/home/USER/PhpStorm-133.982/bin/phpstorm.sh" %f
Comment=Develop with pleasure!
Categories=Development;IDE;
Terminal=false
StartupWMClass=jetbrains-phpstorm

PhpStorm 8.0x

Create a file /usr/share/applications/jetbrains-phpstorm.desktop

[Desktop Entry]
Version=1.0
Type=Application
Name=PhpStorm
Icon=/home/USER/PhpStorm-138.2000.2262/bin/webide.png
Exec="/home/USER/PhpStorm-138.2000.2262/bin/phpstorm.sh" %f
Comment=Develop with pleasure!
Categories=Development;IDE;
Terminal=false
StartupWMClass=jetbrains-phpstorm


@avinashseth
Copy link

what about 10.0x

@aguidis
Copy link

aguidis commented Dec 11, 2015

👍

@ahaubold
Copy link

This helped me to update the launcher icon of PhpStorm 2016.3 on Ubuntu 14.04:
http://askubuntu.com/a/800898

@amani64
Copy link

amani64 commented Jun 6, 2017

Thank you so much, I am looking for this.

@fadykstas
Copy link

fadykstas commented May 11, 2018

Creating a desktop shortcut
To create a desktop shortcut for IntelliJ IDEA, use the Create Desktop Entry command. This command is available:

In the Customize IntelliJ IDEA wizard - when you run IntelliJ IDEA for the first time.
On the Welcome screen: Configure | Create Desktop Entry.
In the main menu: Tools | Create Desktop Entry.
You can choose to create the shortcut:

For all of your computer users: In this case, the jetbrains-idea.desktop entry file is created in /usr/share/applications.
Only for yourself: The jetbrains-idea.desktop entry file is created in ~/.gnome/apps and ~/.local/share/applications.

https://www.jetbrains.com/help/idea/2016.1/installing-and-launching.html#desktop_shortcut

@d-packs
Copy link

d-packs commented Jan 25, 2020

- In the main menu: Tools | Create Desktop Entry. Seems like the fastest, simplest and most fool-proof option. Thanks

@ctxquentin
Copy link

- In the main menu: Tools | Create Desktop Entry. Seems like the fastest, simplest and most fool-proof option.

Works perfectly. Thanks

@llbbl
Copy link
Author

llbbl commented Oct 13, 2020

Glad to hear there is an easier way now. :) Guess i'll keep the gist around for reference?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment