Fix blue tint on MacBook Pro dedicated GPU

This post is primarily a reminder for myself on how to purge/reset the ColorSync user cache.

I’ve got a mid-2010 15″ MacBook Pro, which was the first having both an integrated GPU (Intel HD) and a dedicated GPU (NVidia Geforce GT 330M). It “dynamically” switches between the two on-demand, which means some applications (e.g. Adobe Photoshop, Google Chrome, Visual Studio Code) trigger the switch, probably because of some low-level GPU call that makes OS X decide the dedicated GPU must be used.

Now, since a while, when the MBP would switch from the internal GPU (iGPU) to the dedicated GPU (dGPU), the screen would change colour. It would change from its correct colour to a somewhat blue-ish tint. Very bad on the eyes, especially in the evening.

After googling around a lot, a number of posts on the Apple Discussions pages recommend gfxCardStatus, using which you can “lock” the MBP on the iGPU. I consider this a bad option (it’s not bad software by the way, I’ve used it in the past to monitor the GPU switching), since the dGPU is far more powerful than the iGPU and often you need that power (be it the dedicated memory or the computation power). And, when you attach an external screen (like I do most of the times), it doesn’t work at all.

I also found the recommendation to reset or purge the ColorSync user cache. I tried this and it immediately worked, removing the blue-ish tint from the MBP screen (well, after removing the ColorSync cache and restarting the MBP).

The easiest way to do this (in my opinion), is described by Topher Kessler on CNET.com in his post titled “How to make ColorSync profiles stick in OS X”. It took me a while to find it because the title doesn’t immediately give away the fact that it concerns the ColorSync cache.

So, long story short, execute the following in the Terminal:

sudo rm $(getconf DARWIN_USER_CACHE_DIR)com.apple.colorsync.profiles.`id -u`

…which gets rid of the existing ColorSync user cache. Restart afterwards and the screen will maintain the same colour on both the iGPU and the dGPU.

I don’t know why or how the ColorSync user cache gets corrupted, but I do know how to solve it!

12 thoughts on “Fix blue tint on MacBook Pro dedicated GPU”

  1. hi, you don't know how long a searched for this article, I did exactly what you suggested and it's worked after the restart of the MBP.
    Great work!
    Thanks

  2. Same problem here, but I'm getting the same response as Clive: no such file or directory. Any further hints?

  3. Excellent post man! I was thinking the MBP had some malfunction issue being mid-2010 or something, but this solved it. Thank you very much!

  4. I had to use a different command because I was getting the same 'no such file or directory' line when I used the terminal line from this post. I researched a bit and found another one that seemed to work.
    Copy and past the following into Terminal and type in your password:
    sudo rm $(getconf DARWIN_USER_CACHE_DIR)com.apple.colorsync.profiles.`id -u`

    I just did it and it seems to be working at the moment.

  5. It worked! Thanks a lot!

    (Even though I had my doubts because for me it has become always bluish, I hadn't noticed change when the graphics card was switching and I thought it might be a different problem for me).

    For the comments above, the password would be your user account password.

  6. When I type this into terminal it then says "Password:" and I can't type in my password it's like it's locked.

Leave a Reply

Your email address will not be published. Required fields are marked *