Created
December 4, 2013 13:27
-
-
Save ActionScripted/7787397 to your computer and use it in GitHub Desktop.
How to inspect, disable and revert manual overrides for App Nap in Mavericks
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
# to find registered app domains: | |
defaults domains | |
# to check current setting or test if key exists | |
defaults read com.apple.Terminal NSAppSleepDisabled | |
# to disable app nap | |
defaults write com.apple.Terminal NSAppSleepDisabled -bool YES | |
# to flip the boolean (turn App Nap back on) | |
defaults write com.apple.Terminal NSAppSleepDisabled -bool NO | |
# to delete the app nap entry (turn App Nap back on) | |
defaults delete com.apple.Terminal NSAppSleepDisabled |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think you need to relaunch apps once you've changed things. And you can see the change in Activity Monitor under the Energy tab by sending an app to the back or changing spaces. Check it prior and see if "App Nap" says "Yes" for an app, then change the settings and check again to see the change ("No").