DownloadSynergy

Only part that really needs documenting is the client install on gentoo I set this up to start on boot it will work before and after you log in. You must be using gdm and not xdm


On Gentoo:
First install synergy,
Added :
"x11-misc/synergy ~x86"
to /etc/portage/package.keywords

Then emerge -v synergy
Now configure to startup when X11 starts
In gentoo I used the following. And put the commands at the top of the scripts as some of the scripts may exit in the middle of execution.

/etc/X11/gdm/Init/Default
/usr/bin/killall synergyc
sleep 1
/usr/bin/synergyc [options] servername
/etc/X11/gdm/PostLogin/Default
/usr/bin/killall synergyc
sleep 1
/etc/X11/gdm/Xsession
/usr/bin/killall synergyc
sleep 1
/usr/bin/synergyc [options] servername
Added