Last active
February 9, 2020 06:43
-
-
Save brunolm/65a760f6130fd2e1d39c to your computer and use it in GitHub Desktop.
This file contains 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
curl -L "https://go.microsoft.com/fwlink/?LinkID=760868" > /tmp/vscode.deb | |
sudo dpkg -i /tmp/vscode.deb && sudo apt-get install -f |
line 9:
sudo echo -e "[Desktop Entry]\nName=VSCode\nComment=Visual Studio Code\nExec=/opt/vscode/Code\nIcon=/opt/vscode/resources/app/vso.png\nType=Application\nVersion=1.0\nTerminal=false\nCategories=Development" > /usr/share/applications/vscode.desktop
Icon's path has changed to /opt/vscode/resources/app/resources/linux/vscode.png
vscode.png renamed again as code.png so line 9 should be:
sudo echo -e "[Desktop Entry]\nName=VSCode\nComment=Visual Studio Code\nExec=/opt/vscode/Code\nIcon=/opt/vscode/resources/app/resources/linux/code.png\nType=Application\nVersion=1.0\nTerminal=false\nCategories=Development" > /usr/share/applications/vscode.desktop
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Running from command line