In OS X Mountain Lion if an application runs in the background (background) without, however, no open windows, then the system automatically decides to terminate it.
This behavior existed in OS X Lion to a degree but is now stricter. To change it, therefore, open Terminal app and issue the following command:
defaults write-g NSDisableAutomaticTermination-bool TRUE
To restore the operation to its previous state issue the following command:
defaults write-g NSDisableAutomaticTermination-bool FALSE
Post a Comment