1

When I try to open a file with another application it shows two KolourPaint apps. How can I remove the one without the icon?

enter image description here

Wild Card
  • 163
  • 1
  • 2
  • 9
  • It probably means that you've got two versions of the app installed... a .deb version, and a snap version. Determine which is the most current version. dpkg -l *olour* | grep ii may help. If they're both the same, then delete the snap version. do snap list and snap remove. – heynnema May 05 '20 at 18:25

1 Answers1

1

The easiest way is to open a terminal and run

sudo rm /var/lib/snapd/desktop/applications/kolourpaint_org.kde.kolourpaint.desktop 

Only one Kolourpaint icon

Note:

  • Make sure there's no version of kolourpaint_org.kde.kolourpaint.desktop in ~/.local/share/applications
  • You'll need to do this each time this particular snap is updated or until this bug is fixed.
DK Bose
  • 42,548
  • 23
  • 127
  • 221