├── .gitignore ├── finder@2x.png ├── reset_classy_finder.sh ├── classy_finder.sh └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | finder_backup.png 2 | finder@2x_backup.png 3 | -------------------------------------------------------------------------------- /finder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsinha/classy_finder/HEAD/finder@2x.png -------------------------------------------------------------------------------- /reset_classy_finder.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | SCRIPT_DIR=`dirname $0` 4 | 5 | # copy the originals back to the original directory 6 | sudo cp ${SCRIPT_DIR}/finder_backup.png /System/Library/CoreServices/Dock.app/Contents/Resources/finder.png 7 | sudo cp ${SCRIPT_DIR}/finder@2x_backup.png /System/Library/CoreServices/Dock.app/Contents/Resources/finder@2x.png 8 | 9 | # trash the iconcache, forcing the dock to rebuild it 10 | sudo rm -f `sudo find /private/var/folders -name com.apple.dock.iconcache 2> /dev/null` 11 | 12 | # restart the dock 13 | sudo killall Dock 14 | -------------------------------------------------------------------------------- /classy_finder.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | SCRIPT_DIR=`dirname $0` 4 | 5 | # back up the originals to the local directory 6 | sudo cp /System/Library/CoreServices/Dock.app/Contents/Resources/finder.png ${SCRIPT_DIR}/finder_backup.png 7 | sudo cp /System/Library/CoreServices/Dock.app/Contents/Resources/finder@2x.png ${SCRIPT_DIR}/finder@2x_backup.png 8 | 9 | # copy in the new ones 10 | sudo cp ${SCRIPT_DIR}/finder@2x.png /System/Library/CoreServices/Dock.app/Contents/Resources/finder@2x.png 11 | sudo cp ${SCRIPT_DIR}/finder@2x.png /System/Library/CoreServices/Dock.app/Contents/Resources/finder.png 12 | 13 | # trash the iconcache, forcing the dock to rebuild it 14 | sudo rm -f `find /private/var/folders -name com.apple.dock.iconcache 2> /dev/null` 15 | 16 | # restart the dock 17 | sudo killall Dock 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Classy Finder Logo 2 | 3 | 4 | 5 | 6 | > "We soldier on undaunted, you and I, Master Bruce. And if I may say so, sir... I couldn't beg, borrow or steal a finer way to live my life." - Alfred Pennyworth 7 | 8 | Replace your default OSX finder logo with something way more classy 9 | 10 | ###To use, do the following: 11 | 12 | ####Be sure to enter your sudo password when prompted! 13 | 14 | ```sh 15 | git clone https://github.com/vsinha/classy_finder.git 16 | cd classy_finder 17 | ./classy_finder.sh 18 | ``` 19 | ####It may take a moment for the dock to come back up, don't panic!! 20 | 21 | ###To reset back to the default finder logo: 22 | Run `./reset_classy_finder.sh` (again from inside the classy_finder repository. 23 | --------------------------------------------------------------------------------