我正在尝试在我的 mac 启动时加载协同作用,以便我可以使用鼠标/键盘登录。我按照这些说明进行操作
http://sourceforge.net/p/synergy2/discussion/199580/thread/76cf630a
我的 Synology 安装在哪里/Applications/Synergy.app/
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>KeepAlive</key> <true/>
<key>Label</key> <string>net.sourceforge.synergy2.loginwindow</string>
<key>LimitLoadToSessionType</key> <string>LoginWindow</string>
<key>ProgramArguments</key>
<array>
<string>/Applications/Synergy.app/Contents/MacOS/synergyc</string>
<string>-f</string>
<string>-1</string>
<string>--name</string>
<string>mini</string>
<string>--debug</string>
<string>WARNING</string>
<string>192.168.1.200</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
但是我遇到了这些错误/var/log/system.log
synergyc[220]: 3891612: (connect_and_check) Untrusted apps are not allowed to connect to or launch Window Server before login.
这些文件都正确拥有
-rwxr-xr-x 1 root wheel 893040 May 2 21:07 Synergy
-rwxr-xr-x 1 root wheel 3999988 May 2 21:07 synergyc
-rwxr-xr-x 1 root wheel 4269168 May 2 21:07 synergys
我已解除隔离
xattr -d com.apple.quarantine /Applications/Synergy.app/Contents/MacOS/*
我不知道还能做什么?为什么 OSX 这么难?我还能尝试什么?
ps 我尝试了钩子方法,但也没有用。这种方法看起来更干净。