Created
April 14, 2021 08:30
-
-
Save loretoparisi/c582bfd0d3df3798ded8a477d747b17a to your computer and use it in GitHub Desktop.
OSX Mojave Disappearing Icons Fixed
This file contains hidden or 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
find "${HOME}/Library/Application Support/Dock" -name "*-*.db" -maxdepth 1 -delete; | |
sudo rm -rf /Library/Caches/com.apple.iconservices.store; | |
sudo find /private/var/folders/ -name com.apple.dock.iconcache -exec rm -rf {} \;; | |
sudo find /private/var/folders/ -name com.apple.iconservices -exec rm -rf {} \;; | |
sudo touch /Applications/*; | |
defaults write com.apple.dock ResetLaunchPad -bool true; | |
killall Dock; | |
killall Finder; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment