Invoking the lock screen using python

2.9k views Asked by At

How can I bring up the lock screen from within a python app? I would like the application to do that for me instead of pressing the Ctrl-Alt-L separately.

1

There are 1 answers

1
Stephen Rauch On BEST ANSWER

For Ubuntu:

os.popen('gnome-screensaver-command --lock')

(Source)

For Windows:

import ctypes
ctypes.windll.user32.LockWorkStation()

(Source)