Skip to content

Instantly share code, notes, and snippets.

@massive
Created September 26, 2011 06:51
Show Gist options
  • Save massive/1241738 to your computer and use it in GitHub Desktop.
Save massive/1241738 to your computer and use it in GitHub Desktop.
OSX Lion hibernate script
#!/bin/bash
if [ "$(whoami)" != 'root' ]; then
echo "You have no permission to run $0 as non-root user."
exit 1;
fi
pmset hibernatemode 25
osascript -e 'tell application "System Events" to sleep'
sleep 5m
pmset hibernatemode 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment