Post Preview
postName: roksob
postWebsite: ''
postComment: "Found this somewhere on the web. It works. Don't know who wrote it. Not me.\n--—-\nIf you reboot, or logout, then you have to restart Finder once logged in to get the colored icons back. To avoid this, you can add a .plist to /Library/LaunchAgents. \n\nHere's the plist: \n\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-AppleDTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n <key>Label</key>\n <string>com.example.color.sidebar</string>\n <key>KeepAlive</key>\n <false/>\n <key>RunAtLoad</key>\n <true/>\n <key>ProgramArguments</key>\n <array>\n <string>/bin/bash</string>\n <string>-c</string>\n <string>killall Finder; open /System/Library/CoreServices/Finder.app</string>\n </array>\n</dict>\n</plist>\n\nJust paste the above into a plain text document and save as com.Finder.color.sidebar.plist. Put it in the /Library/LaunchAgents folder.\n"