I'm trying to get synergy to load when my mac starts up so I can use my mouse/keyboard to log in. I followed these instructions
http://sourceforge.net/p/synergy2/discussion/199580/thread/76cf630a
Where my synology is installed in /Applications/Synergy.app/
The plist file looks like this
<?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>
But I'm getting these errors in /var/log/system.log
synergyc[220]: 3891612: (connect_and_check) Untrusted apps are not allowed to connect to or launch Window Server before login.
The files are all owned correctly
-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
I've removed the quarantine
xattr -d com.apple.quarantine /Applications/Synergy.app/Contents/MacOS/*
I don't know what else to do? Why is OSX being so difficult? What else can I try?
p.s. I tried the hook method but that didn't work either. This approach looks cleaner.