# Input-device

INPUT_DEVICE="/dev/mouse"


# Output-device

OUTPUT_DEVICE="/dev/imouse"


# Acceleration

# XY_ACCEL_EXP:	This applies a nonlinear acceleration to the horizontal
# and vertical movement of the cursor. Setting XY_ACCEL_EXP to 1.0 disables
# acceleration (each pixel reported by the mouse moves the cursor one
# pixel on-screen). Setting XY_ACCEL_EXP to 2.0 results in an extremely
# agressive acceleration and will basically send the cursor flying across
# the screen if the trackpoint is pushed with any significant pressure.
#
# Values lower than 1.0 should not be used.

XY_ACCEL_EXP="1.5"


# Z_ACCEL_MULT:	This variable controls the basic, unaccelerated rate of
# scrolling when the middle mouse button is depressed. If Z_ACCEL_MULT is
# set to 1, one pixel of movement with the MMB down is translated to one
# scroll-wheel 'click.' When Z_ACCEL_MULT is set to 0.02, 50 (1 / 0.02)
# pixels of movement are required to trigger one scroll-wheel event. While
# the MMB is down, any movement will be accumulated, and a scroll-wheel
# event will be sent once the accumulated motion times Z_ACCESS_MULT 
# exceeds +/- 1.

Z_ACCEL_MULT="0.02"


# Z_ACCEL_EXP:	This applies an exponential acceleration to the
# Z-axis movement. This is done before the the multiplier; the movement
# reported from the Trackpoint is first accelerated as in the XY case
# above, and then multiplied by Z_ACCEL_MULT and accumulated. 

Z_ACCEL_EXP="1.2"

