macos – 在launchd plist中检测到LaunchEvents键无法识别(检测USB设备)

我想在将USB设备插入Mac OS X系统时启动特定的应用程序.我已按照
this SO post中给出的配方进行操作.但似乎无法识别LaunchEvents键:当我重新启动系统时,我在控制台上看到以下消息:

com.apple.launchd.peruser.501[173]  (com.example.program) Unknown key for dictionary: LaunchEvents

我正在运行OS X 10.6.8,并且完全有可能在此版本的OS X中不支持xpc_events.如果是这种情况,我的替代方案是什么?

(作为第二个,较小的问题:有没有办法强制重新读取我的.plist文件而不重新启动系统?这会加快调试时间!)

以下是〜/ Library / LaunchAgents / com.example.plist的全部内容. (注意,对于调试,我只是尝试使用/usr/bin/open启动Terminal.app.一旦我开始工作,我将交换我的真实程序.)

<?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>com.example.program</string>
    <key>ProgramArguments</key>
    <array>
      <string>/usr/bin/open</string>
      <string>/Applications/Utilities/Terminal.app</string>
    </array>
    <key>LaunchEvents</key>
    <dict>
      <key>com.apple.iokit.matching</key>
      <dict>
        <key>com.apple.device-attach</key>
        <dict>
          <key>idProduct</key>
          <integer>8963</integer>
          <key>idVendor</key>
          <integer>1659</integer>
          <key>IOProviderClass</key>
          <string>IOUSBDevice</string>
          <key>IOMatchStream</key>
          <true/>
        </dict>
      </dict>
    </dict>
  </dict>
</plist>

最佳答案 要重新加载第一个卸载然后加载:

launchctl unload ~/Library/LaunchAgents/com.example.plist
launchctl load ~/Library/LaunchAgents/com.example.plist
点赞