Skip to content

Instantly share code, notes, and snippets.

@llbbl
Last active March 9, 2022 05:15
Show Gist options
  • 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


@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