在 Cinnamon 或 Gnome3 中设置 Wine 应用程序图标

在 Cinnamon 或 Gnome3 中设置 Wine 应用程序图标

在此处输入图片描述

在上面的截图中,您可以看到我正在使用 Wine 应用程序、Nemo 文件浏览器和 Firefox,但是,我也想为这个 Wine 应用程序使用一个特定的图标!确切地说,我正在使用 PDF Xchange 查看器,我也想在 Cinnamon 中使用其原生的 Windows 图标!

在此处输入图片描述

我怎样才能做到这一点?

答案1

  1. 将图标创建为 png 文件

  2. 复制应用程序文件

    /usr/share/applications

  3. 在文本编辑器中打开它

  4. 定制它。

您也可以直接复制我的模板:

[Desktop Entry]
Name=Your App
Comment=Comments shown as tooltip
Exec= wine /path/to/executable
Icon=/path/to/icon.png
StartupNotify=true
Terminal=false
Type=Application
MimeType=text/plain; 
Categories=Wine;Applications;

提出:

您的图标应放置在:/usr/share/icons/ownicons

使用以下命令创建该目录

sudo mkdir /usr/share/myicons/
sudo chown yourusername:yourusername /usr/share/myicons/

看着Gnome桌面入门规范了解更多信息。

答案2

我有同样的问题,我创建了新的目录,并放入了桌面文件,但 Ubuntu 13.10 中的 Cinnamon 仍然显示愚蠢的 Windows 徽标,我在其他论坛中搜索过但这个论坛最接近我的问题。

我将向你展示我的 Microsoft Windows 桌面文件

[Desktop Entry]
Version=1.0
Type=Application
Name=Microsoft Word 2010
Comment=
Icon=word.png
Exec=env WINEPREFIX="/home/larry/.PlayOnLinux//wineprefix/Office2010" wine C:\\\\windows\\\\command\\\\start.exe /Unix /home/larry/.PlayOnLinux//wineprefix/Office2010/dosdevices/c:/users/larry/Start\\ Menu/Programs/Microsoft\\ Office/Microsoft\\ Word\\ 2010.lnk
NoDisplay=false
Categories=wine-Programs-Microsoft Office;
StartupNotify=true
Terminal=false
StartupWMClass=WINWORD.EXE
Encoding=UTF-8

答案3

此处指出的解决方案无法解决 Cinnamon 中的问题。这是 Cinnamon 中的一个错误,已在以下位置跟踪:https://github.com/linuxmint/Cinnamon/issues/581 此问题在 Cinnamon 2.4.5 中仍然存在

由于在 wine 下运行多个应用程序,这个问题会造成混乱。

可能的解决方法:

  1. 使用不存在此问题的 dock(例如 docky)
  2. 将原生的 Wine 图标替换为更美观的图标。如果您主要使用 Wine 下的某个特定应用程序,则可以使用这个图标。

对于任务栏图标

sudo mv youricon16x16.png /usr/share/icons/Mint-X/apps/16/wine.png

对于Alt+Tab图标

sudo mv youricon.svg /usr/share/icons/Mint-X/apps/scalable/wine.svg

相关内容