我使用Ubuntu与来自Windows的VNC连接。我看到大多数图标如下:

系统信息:
Linux vps568 4.15.0-52-generic #56-Ubuntu SMP Tue Jun 4 22:49:08 UTC 2019 x86_64 x86_64 x86_64 GNU/Linuxxfconf-query -c xsettings -lv命令的输出:
/Gtk/ButtonImages true
/Gtk/CanChangeAccels false
/Gtk/ColorPalette black:white:gray50:red:purple:blue:light blue:geen:yellow:orange:lavender:brown:goldenrod4:dodger blue:pink:light green:gray10gray30:gray75:gray90
/Gtk/CursorThemeName
/Gtk/CursorThemeSize 0
/Gtk/DecorationLayout menu:minimize,maximize,close
/Gtk/FontName Sans 10
/Gtk/IconSizes
/Gtk/KeyThemeName
/Gtk/MenuBarAccel F10
/Gtk/MenuImages true
/Gtk/MonospaceFontName Monospace 10
/Gtk/ToolbarIconSize 3
/Gtk/ToolbarStyle icons
/Net/CursorBlink true
/Net/CursorBlinkTime 1200
/Net/DndDragThreshold 8
/Net/DoubleClickDistance 5
/Net/DoubleClickTime 400
/Net/EnableEventSounds false
/Net/EnableInputFeedbackSounds false
/Net/IconThemeName elementary-xfce-dark
/Net/SoundThemeName default
/Net/ThemeName Greybird
/Xft/Antialias -1
/Xft/Hinting -1
/Xft/HintStyle hintnone
/Xft/RGBA none我也尝试过这个命令,但是没有任何明显的更改:
xfdesktop --replace发布于 2020-03-03 00:41:52
大部分包裹都不见了。可能是因为使用服务器版本而不是桌面版本。
我也有同样的问题。
最后我第一次安装gnome,之后xfce还在那里。
sudo tasksel选择一个包,我去了xubuntu minimal,没有得到的浏览器似乎,所以去了整个xubuntu桌面。你认为那应该做我想做的事,还在捣乱。
也需要字体,不确定这是否与任务组中的字体包相同。
sudo apt-get install xfonts-base and sudo apt-get install xfonts-100dpi and sudo apt-get install xfonts-75dpi fixes font issues. – gies0r Dec 10 '19 at 19:22发布于 2019-06-21 06:46:37
确保安装了包xubuntu-icon-theme。打开终端并键入:
dpkg -i | grep xubuntu-icon-theme 如果没有安装,请键入以下内容:
sudo apt install xubuntu-icon-theme现在,更新icon-cache:
sudo update-icon-caches /usr/share/icons/elementary-xfce \
/usr/share/icons/elementary-xfce-dark /usr/share/icons/elementary-xfce-darker \
/usr/share/icons/elementary-xfce-darkestNormaly,在安装了一个主题之后,它将从postinst脚本中触发。
cat /var/lib/dpkg/info/xubuntu-icon-theme.postinst | grep update-icon-caches提供了以下输出
if which update-icon-caches >/dev/null 2>&1 ; then
update-icon-caches /usr/share/icons/elementary-xfce /usr/share/icons/elementary-xfce-dark /usr/share/icons/elementary-xfce-darker /usr/share/icons/elementary-xfce-darkest发布于 2021-02-12 12:45:07
这里是Ubuntu关于包管理的文章。主题通常以包的形式提供。
若要从终端安装缺少的图标主题,请执行以下操作:
sudo apt-get update && sudo apt-get install xubuntu-icon-theme gnome-icon-theme tango-icon-theme如果有如下所示的消息错误:
(meld:1021):Gtk-警告**:错误加载主题图标‘文档-新’的股票:图标‘文档-新的’没有出现在主题基本-xfce
可以使用以下方法修复此错误消息:
sudo apt-get install gtk2-engines-pixbuf(此信息取自ToZ用户的https://forum.xfce.org/viewtopic.php?id=12702)
https://askubuntu.com/questions/1151966
复制相似问题