Created
February 4, 2017 01:07
-
-
Save LTroya/6ab20d199e9afef801e50e4e9cfa63c9 to your computer and use it in GitHub Desktop.
Install Webstorm and Template for create a launcher icon in ubuntu
This file contains hidden or 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
## 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