Created
March 26, 2014 13:36
Show / Hide the Spotlight Menu Icon in Mac OS X
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#HIDE | |
sudo chmod 600 /System/Library/CoreServices/Search.bundle/Contents/MacOS/Search | |
killall SystemUIServer | |
#SHOW | |
sudo chmod 755 /System/Library/CoreServices/Search.bundle/Contents/MacOS/Search | |
killall SystemUIServer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is better:
defaults write com.apple.finder AppleShowAllFiles -boolean true
killall Finder
The reverse is
defaults delete com.apple.finder AppleShowAllFiles
killall Finder
I think This will work or we should go for show hidden files mac.