Made a new basic configuration example
This commit is contained in:
parent
148ebb611b
commit
94a32685b6
|
@ -2,36 +2,38 @@
|
||||||
#
|
#
|
||||||
# comments begin with the # character and continue to the end of
|
# comments begin with the # character and continue to the end of
|
||||||
# line. comments may appear anywhere the syntax permits.
|
# line. comments may appear anywhere the syntax permits.
|
||||||
|
# +-------+ +--------+ +---------+
|
||||||
|
# |Laptop | |Desktop1| |iMac |
|
||||||
|
# | | | | | |
|
||||||
|
# +-------+ +--------+ +---------+
|
||||||
|
|
||||||
section: screens
|
section: screens
|
||||||
# three hosts named: moe, larry, and curly
|
# three hosts named: Laptop, Desktop1, and iMac
|
||||||
moe:
|
# These are the nice names of the hosts to make it easy to write the config file
|
||||||
larry:
|
# The aliases section below contain the "actual" names of the hosts (their hostnames)
|
||||||
curly:
|
Laptop:
|
||||||
|
Desktop1:
|
||||||
|
iMac:
|
||||||
end
|
end
|
||||||
|
|
||||||
section: links
|
section: links
|
||||||
# larry is to the right of moe and curly is above moe
|
# iMac is to the right of Desktop1
|
||||||
moe:
|
# Laptop is to the left of Desktop1
|
||||||
right = larry
|
Desktop1:
|
||||||
up = curly
|
right = iMac
|
||||||
|
left = Laptop
|
||||||
|
|
||||||
# moe is to the left of larry and curly is above larry.
|
# Desktop1 is to the right of Laptop
|
||||||
# note that curly is above both moe and larry and moe
|
Laptop:
|
||||||
# and larry have a symmetric connection (they're in
|
right = Desktop1
|
||||||
# opposite directions of each other).
|
|
||||||
larry:
|
|
||||||
left = moe
|
|
||||||
up = curly
|
|
||||||
|
|
||||||
# larry is below curly. if you move up from moe and then
|
# Desktop1 is to the left of iMac
|
||||||
# down, you'll end up on larry.
|
iMac:
|
||||||
curly:
|
left = Desktop1
|
||||||
down = larry
|
|
||||||
end
|
end
|
||||||
|
|
||||||
section: aliases
|
section: aliases
|
||||||
# curly is also known as shemp
|
# The "real" name of iMac is John-Smiths-iMac-3.local. If we wanted we could remove this alias and instead use John-Smiths-iMac-3.local everywhere iMac is above. Hopefully it should be easy to see why using an alias is nicer
|
||||||
curly:
|
iMac:
|
||||||
shemp
|
John-Smiths-iMac-3.local
|
||||||
end
|
end
|
||||||
|
|
|
@ -0,0 +1,37 @@
|
||||||
|
# sample synergy configuration file
|
||||||
|
#
|
||||||
|
# comments begin with the # character and continue to the end of
|
||||||
|
# line. comments may appear anywhere the syntax permits.
|
||||||
|
|
||||||
|
section: screens
|
||||||
|
# three hosts named: moe, larry, and curly
|
||||||
|
moe:
|
||||||
|
larry:
|
||||||
|
curly:
|
||||||
|
end
|
||||||
|
|
||||||
|
section: links
|
||||||
|
# larry is to the right of moe and curly is above moe
|
||||||
|
moe:
|
||||||
|
right = larry
|
||||||
|
up = curly
|
||||||
|
|
||||||
|
# moe is to the left of larry and curly is above larry.
|
||||||
|
# note that curly is above both moe and larry and moe
|
||||||
|
# and larry have a symmetric connection (they're in
|
||||||
|
# opposite directions of each other).
|
||||||
|
larry:
|
||||||
|
left = moe
|
||||||
|
up = curly
|
||||||
|
|
||||||
|
# larry is below curly. if you move up from moe and then
|
||||||
|
# down, you'll end up on larry.
|
||||||
|
curly:
|
||||||
|
down = larry
|
||||||
|
end
|
||||||
|
|
||||||
|
section: aliases
|
||||||
|
# curly is also known as shemp
|
||||||
|
curly:
|
||||||
|
shemp
|
||||||
|
end
|
Loading…
Reference in New Issue