Created
October 1, 2015 00:31
-
-
Save jlennox/964e5bbd65650d7ffb8b to your computer and use it in GitHub Desktop.
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
sudo rm -r /Applications/Calculator.app | |
sudo rm -r /Applications/Calendar.app | |
sudo rm -r /Applications/Contacts.app | |
sudo rm -r /Applications/Chess.app | |
sudo rm -r /Applications/Dashboard.app | |
sudo rm -r /Applications/FaceTime.app | |
sudo rm -r /Applications/Font\ Book.app | |
sudo rm -r /Applications/DVD\ Player.app | |
sudo rm -r /Applications/Dictionary.app | |
sudo rm -r /Applications/iBooks.app | |
sudo rm -r /Applications/Image\ Capture.app | |
sudo rm -r /Applications/LaunchPad.app | |
sudo rm -r /Applications/Game\ Center.app | |
sudo rm -r /Applications/Photo\ Booth.app | |
sudo rm -r /Applications/Photos.app | |
sudo rm -r /Applications/Maps.app | |
sudo rm -r /Applications/Mail.app | |
sudo rm -r /Applications/Messages.app | |
sudo rm -r /Applications/Mission\ Control.app | |
sudo rm -r /Applications/Notes.app | |
sudo rm -r /Applications/QuickTime\ Player.app | |
sudo rm -r /Applications/Reminders.app | |
sudo rm -r /Applications/Stickies.app | |
sudo rm -r /Applications/Time\ Machine.app | |
sudo rm -r /Applications/iTunes.app/Contents/MacOS/iTunesHelper.app | |
sudo rm -r /System/Library/Image\ Capture/Support/Image\ Capture\ Extension.app | |
sudo rm -r /System/Library/CoreServices/cloudphotosd.app | |
sudo rm -r /System/Library/CoreServices/Stocks.app | |
sudo rm -r /System/Library/CoreServices/Weather.app | |
dockutil --remove "Launchpad" --no-restart | |
dockutil --remove "Mission Control" --no-restart | |
dockutil --remove "Mail" --no-restart | |
dockutil --remove "Calendar" --no-restart | |
dockutil --remove "Reminders" --no-restart | |
dockutil --remove "Notes" --no-restart | |
dockutil --remove "Photos" --no-restart | |
dockutil --remove "Messages" --no-restart | |
dockutil --remove "FaceTime" --no-restart | |
dockutil --remove "Photo Booth" --no-restart | |
dockutil --remove "iTunes" --no-restart | |
dockutil --remove "iBooks" --no-restart | |
dockutil --remove "App Store" --no-restart | |
dockutil --add /Applications/Xcode.app | |
osascript -e 'tell application "Finder" to set desktop picture to POSIX file "/Library/Desktop Pictures/Solid Colors/Solid Aqua Dark Blue.png"' | |
# kill message center | |
launchctl unload -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist | |
killall NotificationCenter | |
# kill animations | |
defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool NO | |
defaults write -g NSAutomaticWindowAnimationsEnabled -bool false | |
defaults write -g NSWindowResizeTime -float 0.001 | |
defaults write -g QLPanelAnimationDuration -float 0 | |
defaults write -g NSScrollViewRubberbanding -bool false | |
defaults write -g NSToolbarFullScreenAnimationDuration -float 0 | |
defaults write com.apple.dock autohide-time-modifier -float 0 | |
defaults write com.apple.dock autohide-delay -float 0 | |
defaults write com.apple.dock no-bouncing -bool TRUE | |
defaults write -g NSScrollAnimationEnabled -bool false | |
defaults write -g NSDocumentRevisionsWindowTransformAnimation -bool false | |
defaults write -g NSBrowserColumnAnimationSpeedMultiplier -float 0 | |
defaults write com.apple.finder DisableAllAnimations -bool true | |
# kill dashboard | |
defaults write com.apple.dashboard mcx-disabled -boolean YES | |
killall Dock | |
# kill auto-resume | |
defaults write -g ApplePersistence -bool no | |
# iTunes and friends | |
defaults write com.apple.iTunes disableCheckForUpdates -bool YES | |
defaults write com.apple.iTunes AutomaticDeviceBackupsDisabled -bool YES | |
defaults write com.apple.iTunes StoreActivationMode -integer 1 | |
defaults write com.apple.finder AppleShowAllFiles TRUE | |
# Disable screen saver | |
defaults -currentHost write com.apple.screensaver idleTime 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment