Skip to content

Instantly share code, notes, and snippets.

@ulasozguler
Created February 4, 2017 18:58
Show Gist options
  • Save ulasozguler/d205281050babc2ccc0f6889d7f4db45 to your computer and use it in GitHub Desktop.
Save ulasozguler/d205281050babc2ccc0f6889d7f4db45 to your computer and use it in GitHub Desktop.
Remove spotlight icon from menu bar.
cd /System/Library/CoreServices/Spotlight.app/Contents/MacOS
sudo cp Spotlight Spotlight.bak
sudo perl -pi -e 's|(\x00\x00\x00\x00\x00\x00\x47\x40\x00\x00\x00\x00\x00\x00)\x42\x40(\x00\x00\x80\x3f\x00\x00\x70\x42)|$1\x00\x00$2|sg' Spotlight
cmp -l Spotlight Spotlight.bak
sudo codesign -f -s - Spotlight
sudo killall Spotlight
@liuziangexit
Copy link

works like a charm

Copy link

ghost commented Oct 15, 2022

if having issues on catalina:::

disable system integrity protection, then reboot

then unmount the drive

sudo mount -uw /

then run the above

@jivanpal
Copy link

@steveaolsen That was already mentioned in the comments before you 🙂

@juzipeek
Copy link

Catalina 10.15.7 work ok

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