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+k) = switchToScreen(kimberly)
18 keystroke(super+m) = switchToScreen(melody)
19 keystroke(super+a) = switchToScreen(ashley)
20 end
21
22 section: links
23 melody:
24 left = kimberly
25 right = ashley
26
27 kimberly:
28 right = melody
29
30 ashley:
31 left = melody
32 end

0 comments