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 section: screens
6 melody:
7 kimberly:
8 ashley:
9 end
10
11 section: options
12 switchDelay = 750
13 screenSaverSync = true
14 keystroke(super+left) = switchInDirection(left)
15 keystroke(super+right) = switchInDirection(right)
16 keystroke(super+k) = switchToScreen(kimberly)
17 keystroke(super+m) = switchToScreen(melody)
18 keystroke(super+a) = switchToScreen(ashley)
19 end
20
21 section: links
22 melody:
23 left = kimberly
24 right = ashley
25
26 kimberly:
27 right = melody
28 ashley:
29 left = melody
30
31 end
32
33 section: aliases
34 ashley:
35 belenix
36 end

0 comments