Results 1 to 2 of 2

Thread: Wacom Tablet (Intuos Pro) - Multiple Monitors

  1. #1
    Join Date
    Sep 2015
    Beans
    32

    Wacom Tablet (Intuos Pro) - Multiple Monitors

    I just purchased a wacom intuos pro tablet. Running Xubuntu 18.04 using xfce. The tablet is recognized fine, but spans all 3 screens. I tried a script to change display:

    Code:
    #!/bin/sh
    #using xrandr we get the list of monitors
    #using xinput we get the list of connected devices
    
    wacom=xinput | grep -i Intuos | awk '{ print $9 }' | awk -F '=' '{ print $2 }'
    for id in $wacom
    do xinput map-to-output $id DP-0 
    done
    
    The tablet still spans all 3 displays. I only want it on my main display (DP-0)
    I have verified that the $id's are correct for all of the wacom id's in xinput.

    Any help is appreciated.
    Last edited by m-knichel; October 19th, 2018 at 06:04 PM.

  2. #2
    Join Date
    Sep 2015
    Beans
    32

    Re: Wacom Tablet (Intuos Pro) - Multiple Monitors

    Got it working, not sure what was wrong, but I re-typed the code and it works now.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •