Last active
December 27, 2015 04:19
-
-
Save beporter/7266399 to your computer and use it in GitHub Desktop.
Read the first comment.
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
#!/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. | |
# [email protected], 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.