From 0517f0e481ef130488c6b44b0f30d8f966acd3bf Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Thu, 12 Feb 2015 02:19:25 +0000 Subject: [PATCH] added all the missing options to the example-spnavrc file git-svn-id: svn+ssh://svn.code.sf.net/p/spacenav/code/trunk/spacenavd@186 ef983eb1-d774-4af8-acfd-baaf7b16a646 --- doc/example-spnavrc | 73 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 72 insertions(+), 1 deletion(-) diff --git a/doc/example-spnavrc b/doc/example-spnavrc index 964b343..ca8e598 100644 --- a/doc/example-spnavrc +++ b/doc/example-spnavrc @@ -9,34 +9,105 @@ # Sensitivity is multiplied with every motion (1.0 normal). +# #sensitivity = 1.0 - # Separate sensitivity for rotation and translation. +# #sensitivity-translation = 1.0 #sensitivity-rotation = 1.0 +# Separate sensitivity for each roation and translation axis. +# +#sensitivity-translation-x = 1.0 +#sensitivity-translation-y = 1.0 +#sensitivity-translation-z = 1.0 +#sensitivity-rotation-x = 1.0 +#sensitivity-rotation-y = 1.0 +#sensitivity-rotation-z = 1.0 + # Dead zone; any motion less than this number is discarded as noise. +# #dead-zone = 2 +# Separate dead-zone for each rotation and translation axis. +# +#dead-zone-translation-x = 2 +#dead-zone-translation-y = 2 +#dead-zone-translation-z = 2 +#dead-zone-rotation-x = 2 +#dead-zone-rotation-y = 2 +#dead-zone-rotation-z = 2 + # Selectively invert translation and rotation axes. Valid values are # combinations of the letters x, y, and z. +# #invert-rot = yz #invert-trans = yz # Swap Y and Z axes +# #swap-yz = false +# Axis remapping (zero-based) +# +#axismap0 = 0 +#axismap1 = 1 +#... +#axismapN = N (N < 64) + + +# Button remapping (zero-based) +# +#bnmap0 = 0 +#bnmap1 = 1 +#... +#bnmapN = N (N < 64) + + +# Map buttons to keyboard keys (experimental) +# By default no such mappings are active. Use the following syntax: +# kbmapN = +# where N is the button number (zero-based), and is a keysym name from +# /usr/include/X11/keysymdef.h, without the leading XK_ +# Example: +# kbmap0 = Escape + + # Serial device # Set this only if you have a serial device, and make sure you specify the # correct device file. If you do set this option, any USB devices will be # ignored! +# #serial = /dev/ttyS0 # Enable/disable LED light (for devices that have one). +# #led = on + + +# Device grab (USB) +# When set to true (default): grab the USB device to prevent other programs +# (such as the X server) from also using it. +# +#grab = true + + +# Custom USB device +# List of additional devices to use +# example: +# device-id = 046d:c625 + + +# Repeat interval (milliseconds) +# How often should spacenavd repeat the last event while out of the deadzone? +# You probably don't need this setting. Set it to something like 250 if you +# find that your apps stop moving the view while you hold the puck/ball at a +# fixed off-center position (like bottomed out on the vertical axis). +# +#repeat-interval = 0