Created
May 5, 2017 19:28
-
Star
(176)
You must be signed in to star a gist -
Fork
(26)
You must be signed in to fork a gist
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You are right! By following your method, I fixed Cursor icon after uninstall it!