Advertisement
Guest User

Untitled

a guest
Nov 14th, 2013
765
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. # sample synergy configuration file
  2. #
  3. # comments begin with the # character and continue to the end of
  4. # line. comments may appear anywhere the syntax permits.
  5. # +-------+ +--------+
  6. # |Laptop | |Desktop1|
  7. # | | | |
  8. # +-------+ +--------+
  9.  
  10. section: screens
  11. # two hosts named: Laptop, Desktop1
  12. # These are the nice names of the hosts to make it easy to write the config file
  13. # The aliases section below contain the "actual" names of the hosts (their hostnames)
  14. Laptop:
  15. Desktop1:
  16. end
  17.  
  18. section: links
  19. # Laptop is to the left of Desktop1
  20. Desktop1:
  21. left = Laptop
  22.  
  23. # Desktop1 is to the right of Laptop
  24. Laptop:
  25. right = Desktop1
  26.  
  27. end
  28.  
  29. section: aliases
  30. # The "real" name of the computers above
  31. Laptop:
  32. YourLaptopName
  33. Desktop1:
  34. YourDesktopName
  35. end
  36.  
  37. #A few of my favorite options
  38. section: options
  39.  
  40. #Synergy won't switch if it is trying to switch in these corners
  41. switchCorners = all
  42.  
  43. #Sync screensavers between devices; it would be mighty silly I'f youre coding away on windows and linux goes to sleep on you
  44. screenSaverSync = true
  45.  
  46. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement