VS Code ON ubuntu 16.04安装后未显示正确的启动器图标


3

安装VS Code后,我得到的是默认图标,而不是vs代码附带的图标

我怎样才能使它们看起来像这样?

在此处输入图片说明

Answers:


7

基于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

1
Icon=code是我默认设置的方式。将其更改为您指定的路径,并且可以正常工作。谢谢!
Alkarin

我已经在Ubuntu Budgie 18.04上通过Snap安装了VS Code,并且缺少此code.png图形文件。在哪里可以下载原始文件?
Marecky

0

没有有关如何安装软件的信息。在Ubuntu中,有几种安装软件包的方法,其中一些可能更难一些,一些更容易。我建议先阅读本教程:

https://code.visualstudio.com/docs/setup/linux

我非常确定这些步骤将使您成功完成图标的正常安装。

PS:要卸载当前版本,可以使用

sudo apt-get清除代码

以防万一你不知道。


嗨,那里的问题不是因为我遵循了vs代码安装指南,而是因为我已经看到有人在github上报告了同样的问题,但是现在我解决了:)感谢您的反馈
lotfio

欢迎您,兄弟,很高兴听到您已修复已损坏的问题:)许多ppl倾向于以错误的方式安装软件包,所以我从简单开始。另外,以这种方式安装图标没有问题,因此我的回答是基于我的经验。
chazecka
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.