11-x11-synaptics.fdi revision 302b15bd
1<?xml version="1.0" encoding="ISO-8859-1"?> 2<!-- Example fdi file that assigns the synaptics driver to any touchpad in 3 the system. 4 5 DO NOT EDIT THIS FILE, your distribution will likely overwrite 6 it when updating. Copy (and rename) this file into 7 /etc/hal/fdi/policy first before adding options. 8 --> 9<deviceinfo version="0.2"> 10 <device> 11 <match key="info.capabilities" contains="input.touchpad"> 12 <merge key="input.x11_driver" type="string">synaptics</merge> 13 <!-- Arbitrary options can be passed to the driver using 14 the input.x11_options property since xorg-server-1.5. --> 15 <!-- EXAMPLES: 16 Maximum movement of the finger for detecting a tap 17 <merge key="input.x11_options.MaxTapMove" type="string">2000</merge> 18 19 Enable vertical scrolling when dragging along the right edge 20 <merge key="input.x11_options.VertEdgeScroll" type="string">true</merge> 21 22 Enable vertical scrolling when dragging with two fingers anywhere on the touchpad 23 <merge key="input.x11_options.VertTwoFingerScroll" type="string">true</merge> 24 25 Enable horizontal scrolling when dragging with two fingers anywhere on the touchpad 26 <merge key="input.x11_options.HorizTwoFingerScroll" type="string">true</merge> 27 28 If on, circular scrolling is used 29 <merge key="input.x11_options.CircularScrolling" type="string">true</merge> 30 31 For other possible options, check CONFIGURATION DETAILS in synaptics man page 32 --> 33 </match> 34 </device> 35</deviceinfo> 36