[LINUX mint] Huion 1060+, config touches matérielles pour gimp.

Résolu/Fermé
yann - 7 juin 2019 à 14:56
 yann - 7 juin 2019 à 15:50
Bonjour, la partie stylet fonctionne bien sous gimp 2.8 (gestion de la pression OK).

Mon soucis est pour configurer certaines touches matérielles de la tablette, en particulier "zoom in" (zoom out fonctionne)

Pour dézoomer ça fonctionne avec:
xsetwacom --set 'HUION Huion Tablet Pad pad' Button 9 "key minus"
OU
xsetwacom --set 'HUION Huion Tablet Pad pad' Button 9 "key -"

Je ne parviens pas à zoomer
xsetwacom --set 'HUION Huion Tablet Pad pad' Button 9 "key plus"
ET
xsetwacom --set 'HUION Huion Tablet Pad pad' Button 9 "key +"
ne fonctionnent pas

Une idée? Merci.
A voir également:

1 réponse

Bon, je me réponds à moi-même, ça pourra probablement servir:
En utilisant l'outil texte je me suis aperçu qu'il faut ajouter shift (et altgr pour la taille d'outil)


Voici donc mon fichier bash fonctionnel pour gimp 2.8 (annuler/gomme/brush/zoom in/zoom out/size+/size-/main):

#!/bin/sh
xsetwacom --set 'HUION Huion Tablet Pad pad' Button 1 "key +ctrl +z -z -ctrl"
xsetwacom --set 'HUION Huion Tablet Pad pad' Button 2 "key shift e"
xsetwacom --set 'HUION Huion Tablet Pad pad' Button 3 "key p"
xsetwacom --set 'HUION Huion Tablet Pad pad' Button 8 "key shift +"
xsetwacom --set 'HUION Huion Tablet Pad pad' Button 9 "key minus"
xsetwacom --set 'HUION Huion Tablet Pad pad' Button 10 "key altgr ]"
xsetwacom --set 'HUION Huion Tablet Pad pad' Button 11 "key altgr ["
xsetwacom --set 'HUION Huion Tablet Pad pad' Button 12 "key +space"
0