Skip to content

Instantly share code, notes, and snippets.

@beporter
Last active December 27, 2015 04:19
Show Gist options
  • Save beporter/7266399 to your computer and use it in GitHub Desktop.
Save beporter/7266399 to your computer and use it in GitHub Desktop.
Read the first comment.
#!/bin/bash
# Starts the Synergy client via command line on a Mac.
# Set (at least) the SERVER_IP to the IP of your Synergy server computer.
# beporter@users.sourceforge.net, 2013-11-01
SERVER_IP=192.168.x.x
DIR="$( cd -P "$( dirname "$0" )"/.. && pwd )"
LOG_PATH="$DIR/synergy.log"
LOG_LEVEL=WARNING
SYNERGYC=/Applications/Synergy.app/Contents/MacOS/synergyc
$SYNERGYC --log "$LOG_PATH" --debug $LOG_LEVEL $SERVER_IP
@beporter
Copy link
Author

beporter commented Nov 1, 2013

Bash script meant to be used to auto-launch the Synergy synergyc command line client on a Mac during log-in. Read the tracker thread for details.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment