Skip to content

Instantly share code, notes, and snippets.

@febritecno
Created November 9, 2021 04:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save febritecno/bba8a11f85c07a470fa4081f288e5d69 to your computer and use it in GitHub Desktop.
Save febritecno/bba8a11f85c07a470fa4081f288e5d69 to your computer and use it in GitHub Desktop.
Completely disable sleep on any Mac
# Useful to prevent Macbooks to go to sleep when closing the lid instead of running tools that requires a Kernel Extension (e.g. InsomniaX) and more
# Before doing anything, save your current configuration using
pmset -g
# To disable sleep
sudo pmset -a sleep 0; sudo pmset -a hibernatemode 0; sudo pmset -a disablesleep 1;
# And to go back to normal
sudo pmset -a sleep 1; sudo pmset -a hibernatemode [original hibernatemode value]; sudo pmset -a disablesleep 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment