Invoking the lock screen using python

3k 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 best solutions below

1
On BEST ANSWER

For Ubuntu:

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

(Source)

For Windows:

import ctypes
ctypes.windll.user32.LockWorkStation()

(Source)