我使用 Ubuntu 并通过 VNC 连接 Windows。我看到大多数图标如下:
系统信息:
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/Linux
命令输出xfconf-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
答案1
大多数软件包都缺失了。可能是因为使用的是服务器版本而不是桌面版本
我也有同样的问题。
我最终第一次安装了 gnome,xfce
之后它仍然在那里。
sudo tasksel
选择一个软件包,我选择的软件包xubuntu minimal,
似乎没有附带浏览器,因此选择完整xubuntu
桌面。您认为这应该可以满足我的需要,但仍然在捣鼓它。
还需要字体,不确定这是否与tasksel中的字体包相同
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
答案2
确保已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-darkest
通常,安装主题后它会由 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
答案3
这里是有关软件包管理的 Ubuntu wiki 文章。主题通常以软件包形式提供。
要从终端安装缺少的图标主题:
sudo apt-get update && sudo apt-get install xubuntu-icon-theme gnome-icon-theme tango-icon-theme
如果您收到如下错误信息:
(meld:1021): Gtk-警告**: 加载库存主题图标‘document-new’时出错: 主题 elementary-xfce 中不存在图标‘document-new’
您可以使用以下方法修复此错误消息:
sudo apt-get install gtk2-engines-pixbuf
(此信息取自 ToZ 用户https://forum.xfce.org/viewtopic.php?id=12702)