One feature which seems to divide the masses is OS X’s ability to relaunch your applications on startup/reboot. This feature is know as Apple Persistence, which is personally a feature I am not really a fan of. It’s very rare for me to want the same applications on each use of my MacBook, asides from the obvious email and unified comms clients of course.
So – to disable to ‘persistent’ application mode simply follow these simple steps below
- Open the Utilities folder
- Open a terminal window
- Copy and paste the following line in:
sudo defaults write -g ApplePersistence -bool no
- Enter your password and press enter
Now the next time you reboot, you’ll be greeted with your beautiful desktop wallpaper, and not the plethora of apps and browser windows.
If you decide you miss the feature, all you need to do is switch the boolean value back to yes:
sudo defaults write -g ApplePersistence -bool yes