有一个错误报告称 ubuntu-mono-dark(为 appindicators 提供图标的默认图标主题)没有任何用于文件操作的图标。
一个更广泛的错误被提交,图标被完全重新绘制。不幸的是,奥托·格林斯莱德(视觉设计主管)和丹尼尔·福尔(艺术家)之间似乎没有公开的设计讨论。我在chaotic 和DanRabbit(他们的句柄)之间找不到任何IRC 日志。也许别人的 IRC 搜索比我的好?
如果您不喜欢该图标,请尝试此命令以查看系统上其他主题提供的文件操作图标。
find /usr/share/icons -name "system-file-manager-panel.*" | sed -e"s/.*/<img src=\"file:\/\/&\" alt=\"&\" \/>&<p\/>/" > ~/icons.html
xdg-open ~/icons.html
Run Code Online (Sandbox Code Playgroud)
我安装了elementary和faenza,但仍然没有任何好的选择。
所以我所做的是使用 ubuntu-mono-dark 中的雾图标。它看起来像三条波浪线,我认为这比指针更好地代表运动(移动文件):

然后,您可以创建自己的轻量级主题(如我此处所述),用您喜欢的图标替换您不喜欢的图标。在我的示例中,我使用weather-fog.svg。
# Create a new theme containing the icon we want
mkdir -p ~/.icons/mono-seth/actions/scalable
ln -s /usr/share/icons/ubuntu-mono-dark/status/16/weather-fog.svg ~/.icons/mono-seth/actions/scalable/.
# Copy the theme config and modify it for our new theme
cp /usr/share/icons/ubuntu-mono-dark/index.theme ~/.icons/mono-seth/.
sed -i -e "s/Name=ubuntu-mono-dark/Name=mono-seth/g" ~/.icons/mono-seth/index.theme
sed -i -e "s/Inherits=/Inherits=ubuntu-mono-dark,/g" ~/.icons/mono-seth/index.theme
Run Code Online (Sandbox Code Playgroud)
现在打开外观并将图标主题更改为 mono-seth。(如果您的首选图标主题不是 ubuntu-mono-dark,请更改Inherits=ubuntu-mono-dark为Inherits=your-theme-here。确保名称与/usr/share/icons或中的主题之一匹配~/.icons。)