Skip to content

Instantly share code, notes, and snippets.

@brock
Created January 19, 2015 16:46
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save brock/254197c0a63558c1e945 to your computer and use it in GitHub Desktop.
Save brock/254197c0a63558c1e945 to your computer and use it in GitHub Desktop.
AppleScripts to lock and unlock a macbook
tell application "System Events"
tell security preferences
set require password to wake to true
end tell
end tell
activate application "ScreenSaverEngine"
tell application "System Events"
tell security preferences
set require password to wake to false
end tell
end tell
tell application "ScreenSaverEngine" to quit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment