Skip to content

Instantly share code, notes, and snippets.

@charlesthomas
Last active August 29, 2015 13:57
Show Gist options
  • Save charlesthomas/9694952 to your computer and use it in GitHub Desktop.
Save charlesthomas/9694952 to your computer and use it in GitHub Desktop.
Is OSX screen locked?
#!/usr/bin/python
from Quartz import CGSessionCopyCurrentDictionary
from sys import exit
d = CGSessionCopyCurrentDictionary()
exit(
d
and d.get("CGSSessionScreenIsLocked", 0) == 0
and d.get("kCGSSessionOnConsoleKey", 0) == 1
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment