Skip to content

Instantly share code, notes, and snippets.

@k2t0f12d
Created August 29, 2019 08:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save k2t0f12d/fbf969197b4bcb8061387b5c88409402 to your computer and use it in GitHub Desktop.
Save k2t0f12d/fbf969197b4bcb8061387b5c88409402 to your computer and use it in GitHub Desktop.
Wacom Setup on Linux using xinput
# System running Gentoo Linux using a Wacom Intuos 4 tablet
# Top Monitor [vertical dual monitor alignment: top and bottom]
xinput set-prop "Wacom Intuos4 6x9 Pen stylus" --type=float "Coordinate Transformation Matrix" 1 0 0 0 0.5 0 0 0 1
xinput set-prop "Wacom Intuos4 6x9 Pen eraser" --type=float "Coordinate Transformation Matrix" 1 0 0 0 0.5 0 0 0 1
# Bottom Monitor [vertical dual monitor alignment: top and bottom]
xinput set-prop "Wacom Intuos4 6x9 Pen stylus" --type=float "Coordinate Transformation Matrix" 1 0 0 0 0.5 0.5 0 0 1
xinput set-prop "Wacom Intuos4 6x9 Pen eraser" --type=float "Coordinate Transformation Matrix" 1 0 0 0 0.5 0.5 0 0 1
# Left Monitor [horizontal dual monitor alignment: left and right]
xinput set-prop "Wacom Intuos4 6x9 Pen stylus" --type=float "Coordinate Transformation Matrix" 0.5 0 0 0 1 0 0 0 1
xinput set-prop "Wacom Intuos4 6x9 Pen eraser" --type=float "Coordinate Transformation Matrix" 0.5 0 0 0 1 0 0 0 1
# Right Monitor [horizontal dual monitor alignment: left and right]
xinput set-prop "Wacom Intuos4 6x9 Pen stylus" --type=float "Coordinate Transformation Matrix" 0.5 0 0.5 0 1 0 0 0 1
xinput set-prop "Wacom Intuos4 6x9 Pen eraser" --type=float "Coordinate Transformation Matrix" 0.5 0 0.5 0 1 0 0 0 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment