1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?xml version="1.0" encoding="UTF-8"?>
<compiz>
<plugin name="mousepoll" useBcop="true">
<_short>Mouse position polling</_short>
<_long>Updates the mouse pointer position from the xserver</_long>
<category>Utility</category>
<deps>
<relation type="after">
<plugin>opengl</plugin>
<plugin>composite</plugin>
<plugin>decor</plugin>
</relation>
</deps>
<options>
<_short>Misc</_short>
<option type="int" name="mouse_poll_interval">
<_short>Mouse Poll Interval</_short>
<_long>How often to poll the mouse position, in miliseconds. Reduce this to reduce choppy behavior.</_long>
<default>40</default>
<min>1</min>
<max>500</max>
</option>
</options>
</plugin>
</compiz>
|