Bạn có nhận ra trong Ngăn tùy chọn bảo mật, bạn có thể yêu cầu mật khẩu để thoát khỏi trình bảo vệ màn hình, nhưng nó mặc định không yêu cầu xác thực?
Sau đó, bạn có thể kích hoạt trình bảo vệ màn hình bằng phương pháp của mình hoặc AppleScript này:
do shell script "open /System/Library/Frameworks/ScreenSaver.framework/Versions/A/Resources/ScreenSaverEngine.app"
Bạn cũng có thể thêm khóa Keychain và sử dụng AppleScript này mà tôi tìm thấy ở đây .
activate application "SystemUIServer"
tell application "System Events"
tell process "SystemUIServer"
repeat with i from 1 to number of menu bar items of menu bar 1
tell menu bar item i of menu bar 1
click
try
if name of menu item 1 of front menu is "Lock Screen" then
click menu item "Lock Screen" of front menu
exit repeat
end if
end try
end tell
end repeat
end tell
end tell
Tập lệnh này yêu cầu Truy cập toàn cầu -> Cho phép kiểm tra quyền truy cập cho các thiết bị trợ giúp.