标签: python ubuntu authentication lockscreen
如何从python应用程序中调出锁定屏幕?我希望应用程序为我这样做,而不是分别按下Ctrl-Alt-L。
答案 0 :(得分:5)
对于Ubuntu:
os.popen('gnome-screensaver-command --lock')
(Source)
对于Windows:
import ctypes ctypes.windll.user32.LockWorkStation()