forked from deskflow/deskflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made them more clear and added some comments to help with the configuration
- Loading branch information
Showing
2 changed files
with
27 additions
and
5 deletions.
There are no files selected for viewing
10 changes: 5 additions & 5 deletions
10
doc/net.sourceforge.synergy2.plist → doc/org.synergy-foss.org.synergyc.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?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"> | ||
<!-- Mac OSX only: Copy this plist file into [~]/Library/LaunchAgents to start synergy server automatically. Make sure you change configuration file below --> | ||
<dict> | ||
<key>Label</key> | ||
<string>org.synergy-foss.org.synergys.plist</string> | ||
<key>OnDemand</key> | ||
<false/> | ||
<key>ProgramArguments</key> | ||
<array> | ||
<string>/usr/bin/synergys</string> | ||
<string>--no-daemon</string> | ||
<string>--config</string> | ||
<!-- Replace this path with the path to your synergy configuration --> | ||
<string>/Users/snorp/.synergy.conf</string> | ||
</array> | ||
<key>RunAtLoad</key> | ||
<true/> | ||
</dict> | ||
</plist> |