ฉันจะเปิดใช้งาน AppleScript ได้อย่างไรเมื่อเข้าสู่ระบบ


คำตอบ:


12

หากคุณบันทึก Apple Script เป็นแอปพลิเคชันให้ไปที่การตั้งค่าระบบ -> ผู้ใช้ -> รายการเข้าสู่ระบบคุณสามารถเพิ่มแอปพลิเคชันที่นั่นและมันจะทำงานในการเข้าสู่ระบบ

ป้อนคำอธิบายรูปภาพที่นี่


2

~ / Library / LaunchAgents / login_test.plist:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN
http://www.apple.com/DTDs/PropertyList-1.0.dtd>
<plist version="1.0">
<dict>
    <key>Label</key>
    <string>login_test</string>
    <key>ProgramArguments</key>
    <array>
        <string>osascript</string>
        <string>/Users/username/Desktop/test.scpt</string>
    </array>
    <key>RunAtLoad</key>
    <true/>
</dict>
</plist>

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.