• # Résolu : problème de config

    Posté par . En réponse au message Souris USB Wacom Graphire mal positionnée après mise à jour Ocelot [Résolu]. Évalué à 0.

    Après avoir constaté que xsetwacom list devices ne retournait rie, et consulté le site de linuxwacom, j'ai fini par supposer qu'il me manquait une section ServerLayout :

     Section "ServerLayout"
     Identifier "X.org Configured"
     InputDevice "stylus"
     InputDevice "eraser"
     InputDevice "cursor" # For non-LCD tablets only
     InputDevice "touch" For TabletPCs and BambooPTs that support touch
     InputDevice "pad" For Intuos3/Intuos4/CintiqV5/Graphire4/Bamboo/BambooPT
     EndSection
    
    

    Pour ma (vieille) Graphire 2 sans touch pad, il semble important de ne pas inclure les deux dernières lignes, sans quoi le serveur X ne redémarre pas.

    Le fichier de conf contient donc :

    > cat /usr/share/X11/xorg.conf.d/50-wacom.conf
    Section "InputClass"
     Identifier "Wacom class"
    # WALTOP needs a patched kernel driver, that isn't in mainline lk yet,
    # so for now just let it fall through and be picked up by evdev instead.
    # MatchProduct "Wacom|WALTOP|WACOM"
     MatchProduct "Wacom|WACOM|Hanwang"
     MatchDevicePath "/dev/input/wacom"
     Driver "wacom"
    EndSection
    Section "InputClass"
     Identifier "Wacom serial class"
     MatchProduct "Serial Wacom Tablet"
     Driver "wacom"
    EndSection
    Section "InputClass"
     Identifier "Wacom serial class identifiers"
     MatchProduct "WACf|FUJ02e5|FUJ02e7|FUJ02e9"
     Driver "wacom"
    EndSection
    Section "InputDevice"
     Identifier "eraser"
     Driver "wacom"
     Option "Device" "/dev/input/wacom"
     Option "Type" "eraser"
     Option "Mode" "Absolute"
     Option "USB" "on"
     Option "Vendor" "Wacom"
     Option "KeepShape" "on"
    EndSection
    Section "InputDevice"
     Identifier "stylus"
     Driver "wacom"
     Option "Device" "/dev/input/wacom"
     Option "Type" "stylus"
     Option "Mode" "Absolute"
     Option "USB" "on"
     Option "Vendor" "Wacom"
     Option "KeepShape" "on"
    EndSection
    Section "InputDevice"
     Identifier "cursor"
     Driver "wacom"
     Option "Device" "/dev/input/wacom"
     Option "Type" "cursor"
     Option "Mode" "Absolute"
     Option "USB" "on"
     Option "TopX" "0"
     Option "TopY" "0"
     Option "BottomX" "1680"
     Option "BottomY" "1050"
     Option "Vendor" "Wacom"
     Option "KeepShape" "on"
    EndSection
    Section "ServerLayout"
     Identifier "X.org Configured"
     InputDevice "stylus"
     InputDevice "eraser"
     InputDevice "cursor" # For non-LCD tablets only
    EndSection