Answers:
基于GitHub上的VS Code开发人员,我们可以通过将路径更改为正确的图标来解决此问题,如下所示:
sudo nano /usr/share/applications/code.desktop
并将图标链接更改为:
Icon=/usr/share/pixmaps/code.png
它看起来应该像这样:
[Desktop Entry]
Name=Visual Studio Code
Comment=Code Editing. Redefined.
GenericName=Text Editor
Exec=/usr/share/code/code --unity-launch %U
Icon=/usr/share/pixmaps/code.png
Type=Application
StartupNotify=true
StartupWMClass=Code
Categories=Utility;TextEditor;Development;IDE;
MimeType=text/plain;inode/directory;
Actions=new-window;
Keywords=vscode;
X-Desktop-File-Install-Version=0.22
[Desktop Action new-window]
Name=New Window
Name[de]=Neues Fenster
没有有关如何安装软件的信息。在Ubuntu中,有几种安装软件包的方法,其中一些可能更难一些,一些更容易。我建议先阅读本教程:
https://code.visualstudio.com/docs/setup/linux
我非常确定这些步骤将使您成功完成图标的正常安装。
PS:要卸载当前版本,可以使用
sudo apt-get清除代码
以防万一你不知道。
Icon=code
是我默认设置的方式。将其更改为您指定的路径,并且可以正常工作。谢谢!