Skip to content

Instantly share code, notes, and snippets.

@seancoyne
Last active September 14, 2015 21:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seancoyne/fc195f20fb545e2c629d to your computer and use it in GitHub Desktop.
Save seancoyne/fc195f20fb545e2c629d to your computer and use it in GitHub Desktop.
Fix TVShows.app Yosemite Dark Mode Menu Bar Icons
#!/usr/bin/env bash
# change to the proper directory
cd ~/Libarary/PreferencePanes/TVShows.prefPane/Contents/Resources/TVShowsHelper.app/Contents/Resources/
# replace "black" version with the already included "white" version
mv TVShows-Menu-Icon-Black.png TVShows-Menu-Icon-Black.png.orig
cp TVShows-Menu-Icon-White.png TVShows-Menu-Icon-Black.png
# replace retina "black" version with the already included retina "white" version
mv "TVShows-Menu-Icon-Black@2x.png" "TVShows-Menu-Icon-Black@2x.png.orig"
cp "TVShows-Menu-Icon-White@2x.png" "TVShows-Menu-Icon-Black@2x.png"
@mdupuy
Copy link

mdupuy commented Sep 14, 2015

Thank you! This has been bugging me for a while.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment