Skip to content

Instantly share code, notes, and snippets.

@LTroya
Created February 4, 2017 01:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LTroya/6ab20d199e9afef801e50e4e9cfa63c9 to your computer and use it in GitHub Desktop.
Save LTroya/6ab20d199e9afef801e50e4e9cfa63c9 to your computer and use it in GitHub Desktop.
Install Webstorm and Template for create a launcher icon in ubuntu
## Dependencies ##
sudo apt-get install icedtea-8-plugin openjdk-8-jre
## INSTALL Source:: http://tutorialforlinux.com/2015/06/04/how-to-quickstart-with-webstorm-ide-on-ubuntu-15-04-vivid-32-64bit-gnu-linux/ ##
tar xvzf ~/Downloads/WebStorm*.tar.gz -C /tmp/
sudo chown -R root:root /tmp/WebStorm*
sudo mv /tmp/WebStorm* /opt/WebStorm
sudo ln -s /opt/WebStorm/bin/webstorm.sh /usr/local/bin/webstorm
webstorm
## CREATE LAUNCHER Source:: // Source https://gist.github.com/rob-murray/6828864 ##
// create file:
sudo vim /usr/share/applications/intellij.desktop
// add the following
[Desktop Entry]
Version=13.0
Type=Application
Terminal=false
Icon[en_US]=/home/rob/.intellij-13/bin/idea.png
Name[en_US]=IntelliJ
Exec=/home/rob/.intellij-13/bin/idea.sh
Name=IntelliJ
Icon=/home/rob/.intellij-13/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