Last active
August 29, 2015 14:22
-
-
Save bjorg/be3f29855e985e1aeadc to your computer and use it in GitHub Desktop.
MacBook Settings
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
# Delay deep sleep for 24hrs, which drains batteries more, | |
# but prevents system restarts when the computer is sleeping | |
# for more than 4 hours (the default value). | |
# NOTE: if the computer sleeps for 24+ hours, it will still cause a system restart. | |
sudo pmset -a standbydelay 86400 | |
# Improve performance of VMware Fusion | |
# from http://kb.parallels.com/122767 | |
sudo nvram boot-args="debug=0x10" | |
# Prevent sleep image from being created | |
# (Saves 8-16GB of space depending on memory on the machine) | |
sudo pmset hibernatemode 0 | |
# Delete sleep image | |
sudo rm -f /var/vm/sleepimage |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment