From 57a56faa957dc3279cc632c27d6e61382662d4fe Mon Sep 17 00:00:00 2001 From: Sven Born Date: Wed, 20 May 2020 19:25:39 +0200 Subject: [PATCH] Add left handed with dual monitor documentation --- support/howto/drivers/evdev/index.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/support/howto/drivers/evdev/index.md b/support/howto/drivers/evdev/index.md index 85b6a0c..285bdfc 100644 --- a/support/howto/drivers/evdev/index.md +++ b/support/howto/drivers/evdev/index.md @@ -304,6 +304,19 @@ paired options in your custom xorg.conf.d .conf file: Option "InvertX" "on" Option "InvertY" "on" +### Left handed tablet orientation with dual monitor set up + +If you are left handed and have a dual monitor set up you may want to flip +the tablet and confine the stylus to one screen. + +***Left monitor*** + + xinput set-prop "device name" --type=float "Coordinate Transformation Matrix" -0.5 0 0.5 0 -1 1 0 0 1 + +***Right monitor*** + + xinput set-prop "device name" --type=float "Coordinate Transformation Matrix" -0.5 0 1 0 -1 1 0 0 1 + Runtime script --------------