Personal tools
You are here: Home Members nigel Scripts Run synergy over SSH
Document Actions

Run synergy over SSH

by Nigel Sim last modified 2006-06-22 11:40

Click here to get the file

Size 1 kB - File type text/x-sh

File contents

#!/bin/bash
# Automaticly setup a synergy connection
# Nigel Sim <nigel.sim@gmail.com>
# Usage: ./synergy.sh <user> <host>
REMOTE_USER=$1
REMOTE_HOST=$2
synergys --config $HOME/scripts/synergy.conf
ssh $REMOTE_USER@$REMOTE_HOST -R 24800:localhost:24800 -x synergyc -f localhost
killall synergys

Powered by Plone, the Open Source Content Management System