Skip to content

Instantly share code, notes, and snippets.

@ismyrnow
Created May 5, 2017 19:28
Show Gist options
  • Save ismyrnow/e92c6010cda9325b2d8811387a05f224 to your computer and use it in GitHub Desktop.
Save ismyrnow/e92c6010cda9325b2d8811387a05f224 to your computer and use it in GitHub Desktop.
Clear the icon cache on a Mac when you start seeing generic icons in Finder or the Dock
sudo rm -rfv /Library/Caches/com.apple.iconservices.store; sudo find /private/var/folders/ \( -name com.apple.dock.iconcache -or -name com.apple.iconservices \) -exec rm -rfv {} \; ; sleep 3;sudo touch /Applications/* ; killall Dock; killall Finder
@josepcrespo
Copy link

josepcrespo commented Jun 19, 2024

Running the sudo rm -rfv /Library/Caches/com.apple.iconservices.store command was enough for me (plus running sudo killall Dock; killall Finder). It makes sense to remove a cache. On the other side, I see very dangerous to remove anything from inside the /private/ folder, which is a sensible folder for the stability of the operating system.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment