为什么“复制对话框”指示器的图标是鼠标指针?

Set*_*ari 9 unity

复制或移动大文件时,我注意到复制对话框指示器的图标是鼠标指针。

这应该是,还是一个错误?

这真的很令人困惑。

des*_*gua 8

这取决于您选择的图标主题。

Ubuntu Mono 黑暗
在此处输入图片说明

氧:
在此处输入图片说明

人性:
在此处输入图片说明

高反差:
在此处输入图片说明


idb*_*rii 1

一个错误报告称 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)

我安装了elementaryfaenza,但仍然没有任何好的选择。

所以我所做的是使用 ubuntu-mono-dark 中的雾图标。它看起来像三条波浪线,我认为这比指针更好地代表运动(移动文件):

Weather-fog.svg 来自 ubuntu-mono-light (因为它应该在 AU 的浅色背景上显示得更好)

然后,您可以创建自己的轻量级主题(如我此处所述),用您喜欢的图标替换您不喜欢的图标。在我的示例中,我使用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-darkInherits=your-theme-here。确保名称与/usr/share/icons或中的主题之一匹配~/.icons。)