3

I am trying to correct the icon and the display name of Arduino IDE in my launcher. I used to lock on the sketch of Arduino IDE 1.6.3 in 7 April into the launcher. It didn't work as I expected so I removed it and I reinstalled the old version of Arduino IDE with this command:

sudo apt-get update && sudo apt-get install arduino arduino-core  

The problem here is whenever I opened the Arduino IDE, it still showed me the name of sketch and Arduino 1.6.3 instead of just Arduino IDE.

How to remove the old one and correct the display icon here!

enter image description here Search menu

A.B.
  • 92,125

1 Answers1

6

Either in /usr/share/applications or ~/.local/share/applications, a "left over" .desktop file must be left behind.

Remove the duplicate desktop file(s), log out and back in and it should be fixed. If you are having doubts on which is the right one to remove: .desktop files show their icon once you make them executable. You can also look inside the file (drag it over an opened gedit window).

File- names of the .desktop files can be confusing, since the name you see in Dash can (and will) be different from the name in Dash; in Dash, you see the name, defined in the Name= line of the file.

Related: https://askubuntu.com/a/516346/72216

Jacob Vlijm
  • 85,475