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!
~/.local/share/applications
and/usr/share/applications
but I saw only one entry for Arduino as I mentioned above, inlocal
, there is nothing similar with the one that I want to remove – Raphaël VO Apr 08 '15 at 10:42~/.local/share/applications
? You can remove that one, since you must have one in/usr/share/applications
, looking at the way you installed it (globally). Names of the.desktop
files can be confusing, since the name you see in Dash can be different (in Dash, you see the name, defined in theName=
line of the file). Remove the local one and log out/in, then try again :) – Jacob Vlijm Apr 08 '15 at 10:54grep -r 'your launcher name'
and it will show the entry file. so you can delete it. – ssi-anik Oct 25 '22 at 20:15update-desktop-database command
from https://www.cyberciti.biz/howto/how-to-install-and-edit-desktop-files-on-linux-desktop-entries/ and it didn't require to logout and login. just the icon existed but it was not working when clicked, thus it worked. – ssi-anik Oct 25 '22 at 20:17