I'm trying to run a keyboard/mouse client application run on my iMac which has just had a fresh install Sequoia via OpenCore patcher. Previously I was running Monterey and the application run - allowing me to use my shared keyboard and mouse to logon to the Mac.
I've tried creating a LaunchDaemon, I created a plist file which I have saved in /Library/LaunchDaemons/com.foobar.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.symless.synergy</string>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>UserName</key>
<string>root</string>
<key>GroupName</key>
<string>wheel</string>
<key>ProgramArguments</key>
<array>
<string>/Applications/Synergy.app/Contents/MacOS/synergyc</string>
</array>
</dict>
</plist>
I've changed ownership of the synergyc application to root/wheel. But when i reboot the service is not running.
Am I doing anything obviously wrong?
I've tried creating a LaunchDaemon, I created a plist file which I have saved in /Library/LaunchDaemons/com.foobar.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.symless.synergy</string>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>UserName</key>
<string>root</string>
<key>GroupName</key>
<string>wheel</string>
<key>ProgramArguments</key>
<array>
<string>/Applications/Synergy.app/Contents/MacOS/synergyc</string>
</array>
</dict>
</plist>
I've changed ownership of the synergyc application to root/wheel. But when i reboot the service is not running.
Am I doing anything obviously wrong?