Skip to content

Instantly share code, notes, and snippets.

@estherjk
Last active December 28, 2023 15:45
Show Gist options
  • Save estherjk/efe4024e08e3a1c231df56bb2bd66d88 to your computer and use it in GitHub Desktop.
Save estherjk/efe4024e08e3a1c231df56bb2bd66d88 to your computer and use it in GitHub Desktop.
Caffeinate on startup

Caffeinate Mac on startup

Keep your mac awake (indefinitely) with caffeinate! Learn more about launchd.

Copy plist file to the user agents directory:

cp local.startup.caffeinate.plist ~/Library/LaunchAgents/

Load the job:

launchctl load ~/Library/LaunchAgents/local.startup.caffeinate.plist

Verify the job has started:

# List of loaded jobs
launchctl list | grep local.startup.caffeinate

# Process status
ps -ef | grep caffeinate
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>local.startup.caffeinate</string>
<key>Program</key>
<string>/usr/bin/caffeinate</string>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment