-
-
Save xthiago/4f18d85a4b714df2e791626931377603 to your computer and use it in GitHub Desktop.
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
sudo apt install gedit | |
cd /tmp/ | |
wget https://download.jetbrains.com/webide/PhpStorm-2021.2.3.tar.gz | |
tar -zxvf PhpStorm-2021.2.3.tar.gz | |
mkdir ~/Apps | |
mv PhpStorm-212.5457.49/ ~/Apps/ | |
ln -s ~/Apps/PhpStorm-212.5457.49 ~/Apps/phpstorm | |
# shortcut | |
vim jetbrains-phpstorm.desktop | |
sudo cp jetbrains-phpstorm.desktop /usr/share/applications/ | |
cp jetbrains-phpstorm.desktop ~/.local/share/applications/ | |
sudo chmod 644 /usr/share/applications/jetbrains-phpstorm.desktop | |
chmod 644 ~/.local/share/applications/jetbrains-phpstorm.desktop | |
# possível bug: https://github.com/microsoft/wslg/issues/45#issuecomment-946884721 | |
# criar ícone na raça: | |
# - https://github.com/microsoft/wslg/issues/261#issuecomment-890465986 | |
# - https://superuser.com/a/1672462 |
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
# ~/.local/share/applications/jetbrains-phpstorm.desktop | |
# /usr/share/applications/jetbrains-phpstorm.desktop | |
[Desktop Entry] | |
Version=1.0 | |
Type=Application | |
Name=PhpStorm (Linux) | |
Icon=/home/xthiago/Apps/phpstorm/bin/phpstorm.svg | |
Exec="/home/xthiago/Apps/phpstorm/bin/phpstorm.sh" %f | |
Comment=Lightning-smart PHP IDE | |
Categories=Development;IDE; | |
Terminal=false | |
StartupWMClass=jetbrains-phpstorm | |
StartupNotify=true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment