web-dev-qa-db-fra.com

Réglage du bouton Wacom et du bouton de la souris

J'utilise mon Wacom Intuos Pro. Et ça marche très bien. J'essaie d'utiliser les boutons du pad comme les boutons gauche et droit de la souris. Mais je ne peux pas. Quelqu'un peut-il m'aider?

1
Wobbo

J'ai une tablette différente, mais j'utilise ce script:

#!/bin/bash 
#
# the darn thing change names if is on wireless or not...
#
device=$(xsetwacom --list | grep -i "pad" |  awk '{print $(NF-2)}')

xsetwacom --set "$device" button 1 "key ctrl z"
xsetwacom --set "$device" button 3 "key shift ctrl s"
xsetwacom --set "$device" button 8 "key shift ctrl l"
echo "Ok --- all set on device $device."

exit 0

Il faudra un peu d'essais et d'erreurs pour trouver les boutons; ce que je fais est normalement d'utiliser un script attribuant une lettre à chaque touche un clic dans un terminal pour vérifier, comme

xsetwacom --set "$device" button 1 "key 1"
xsetwacom --set "$device" button 2 "key 2"

... etc.

Le manuel de xsetwacom dit:

 Button button-number [mapping]
          Set a mapping for the specified button-number. Mappings take the
          form of either a single numeric button or an 'action' to be per‐
          formed. If no  mapping  is  provided,  the  default  mapping  is
          restored.

          Numeric  button  mappings  indicate  what  X11 button number the
          given button-number should correspond to. For example, a mapping
          of  "3" means a press of the given button-number will produce as
          a press of X11 button 3 (i.e. right click).

donc pour définir les boutons 1 et 2 (exemple à l'improviste) du bouton gauche et droit de la souris vous devez faire:

xsetwacom --set "$device" button 1 1
xsetwacom --set "$device" button 2 3

(non testé, j'ai ma tablette au bureau).

0
Rmano