Skip to content

Instantly share code, notes, and snippets.

@organicaudio
Last active December 31, 2015 02:20
Show Gist options
  • Save organicaudio/5096ffbc3e69d0fda152 to your computer and use it in GitHub Desktop.
Save organicaudio/5096ffbc3e69d0fda152 to your computer and use it in GitHub Desktop.
Hide Default OSX Apps Set's All OS X Apps to Hidden Flag to allow for folder sorting
#!/bin/bash
#
# Script hides all default OSX apps so that you can create aliases and sort your apps into folders
#
cd /Applications
chflags hidden "/Applications/Image Capture.app"
chflags hidden "/Applications/Apple Configurator.app"
chflags hidden "/Applications/QuickTime Player.app"
chflags hidden "/Applications/Automator.app"
chflags hidden "/Applications/Launchpad.app"
chflags hidden "/Applications/Reminders.app"
chflags hidden "/Applications/Calculator.app"
chflags hidden "/Applications/Mail.app"
chflags hidden "/Applications/Safari.app"
chflags hidden "/Applications/Calendar.app"
chflags hidden "/Applications/Maps.app"
chflags hidden "/Applications/Chess.app"
chflags hidden "/Applications/Stickies.app"
chflags hidden "/Applications/Messages.app"
chflags hidden "/Applications/Contacts.app"
chflags hidden "/Applications/Mission Control.app"
chflags hidden "/Applications/DVD Player.app"
chflags hidden "/Applications/TextEdit.app"
chflags hidden "/Applications/Dashboard.app"
chflags hidden "/Applications/Notes.app"
chflags hidden "/Applications/Time Machine.app"
chflags hidden "/Applications/Dictionary.app"
chflags hidden "/Applications/Photo Booth.app"
chflags hidden "/Applications/FaceTime.app"
chflags hidden "/Applications/iBooks.app"
chflags hidden "/Applications/Font Book.app"
chflags hidden "/Applications/Photos.app"
chflags hidden "/Applications/Game Center.app"
chflags hidden "/Applications/Preview.app"
chflags hidden "/Applications/iTunes.app"
echo done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment