Finder Archives - Justin Silver https://www.justinsilver.com/tag/finder/ Technology, Travel, and Pictures Tue, 15 Oct 2019 18:12:45 +0000 en-US hourly 1 https://wordpress.org/?v=6.0.1 https://www.justinsilver.com/wp-content/uploads/2013/06/cropped-apple-touch-icon-160x160.png Finder Archives - Justin Silver https://www.justinsilver.com/tag/finder/ 32 32 OSX Mojave Disappearing Icons Fixed https://www.justinsilver.com/technology/osx/osx-mojave-disappearing-icons-fixed/?utm_source=rss&utm_medium=rss&utm_campaign=osx-mojave-disappearing-icons-fixed https://www.justinsilver.com/technology/osx/osx-mojave-disappearing-icons-fixed/#comments Tue, 15 Oct 2019 16:55:01 +0000 https://www.justinsilver.com/?p=4873 Icons on my Macbook Pro running OSX Mojave (10.14.6) started disappearing and being replaced with a generic icon in the Dock, Finder, Applications, task switcher, etc… which is pretty annoying as it makes it...

The post OSX Mojave Disappearing Icons Fixed appeared first on Justin Silver.

]]>
AmpedSense.OptimizeAdSpot('AP'); AmpedSense.OptimizeAdSpot('IL'); AmpedSense.OptimizeAdSpot('IR');

Icons on my Macbook Pro running OSX Mojave (10.14.6) started disappearing and being replaced with a generic icon in the Dock, Finder, Applications, task switcher, etc… which is pretty annoying as it makes it hard to determine which icon launches which app.

The standard recommendations of restarting the Dock and Finder did not fix the issue for me, nor did rebuilding the launch services database. Ultimately I needed to clear the icon cache, as well as the former items, and then after waiting a bit (and relaunching the applications) the icons appeared as normal.

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;

The post OSX Mojave Disappearing Icons Fixed appeared first on Justin Silver.

]]>
https://www.justinsilver.com/technology/osx/osx-mojave-disappearing-icons-fixed/feed/ 8