snippet: view plain - save this
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 section: screens
7 ashley:
8 kimberly:
9 melody:
10 end
11
12 section: options
13 switchDelay = 500
14 screenSaverSync = true
15 keystroke(super+left) = switchInDirection(left)
16 keystroke(super+right) = switchInDirection(right)
17 keystroke(super+up) = switchInDirection(up)
18 keystroke(super+down) = switchInDirection(down)
19 keystroke(super+k) = switchToScreen(kimberly)
20 keystroke(super+m) = switchToScreen(melody)
21 keystroke(super+a) = switchToScreen(ashley)
22 end
23
24 section: links
25 melody:
26 right = ashley
27 down = kimberly
28
29 kimberly:
30 up(0,50) = melody
31 up(50,100) = ashley
32
33 ashley:
34 left = melody
35 down = kimberly
36 end

0 comments