1

In my previous ubuntu, using ppa:ubuntu-wine/ppa, apps run with wine would automagically be shown with nice icons in unity launcher.

In 16.04, using ppa:wine/wine-builds, I installed wine-devel but different apps show all together with the same ugly icon:

Wine icon

I've tried installing gnome-exe-thumbnailer package, which made icons show nicely in nautilus, but not in launcher. Is there any way to fix this?

David Foerster
  • 36,890
  • 56
  • 97
  • 151
melkyades
  • 141

1 Answers1

0

Create ~/.local/share/applications/[application].desktop with:

[Desktop Entry]
Type=Application
Name=
GenericName=
Comment=
Exec=/Path/to/programm
Icon=/Path/to/icon
Categories=
StartupWMClass=

For a bit more help on format and details, this explanation is useful and has helpful links to further information.

Dɑvïd
  • 2,186
Motte001
  • 331
  • 3
  • 15