Created
April 26, 2022 22:08
-
-
Save neontorrent/89ff23cd46afc4626b288e0b409f22c2 to your computer and use it in GitHub Desktop.
macos
This file contains 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
#!/bin/sh | |
# Pump | |
sudo pmset -a disablesleep 1 | |
sudo pmset -a sleep 0 | |
caffeinate -di | |
#Sleep | |
kill `ps -ef | grep caffeinate | grep -v grep | awk '{print $3}'` | |
sudo pmset -a disablesleep 0 | |
pmset sleepnow |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment