Skip to content

Instantly share code, notes, and snippets.

@sirkkalap
Created December 12, 2013 15:57
Show Gist options
  • Save sirkkalap/7930296 to your computer and use it in GitHub Desktop.
Save sirkkalap/7930296 to your computer and use it in GitHub Desktop.
Run Synergy in Screen. This works around the issues between OS X 10.9 Mavericks and Synergy 1.4.15 I found this from the internet: http://synergy-foss.org/spit/issues/details/3642/ . In case you have not used Applescript before, launch application called Automator and read in, or google for it.
on run {input, parameters}
(* Run Synergy in screen *)
tell application "Terminal"
set currentTab to do script ("screen -R;")
delay 2
do script ("/Applications/Synergy.app/Contents/MacOS/Synergy") in currentTab
end tell
return input
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment