aboutsummaryrefslogtreecommitdiff
path: root/resources
diff options
context:
space:
mode:
authorEemeli Blåsten <eemeli@countermail.com>2018-06-07 22:07:03 +0800
committerDr Blåsten <drblasten@countermail.com>2018-08-16 15:22:20 +0800
commitf19a5cb32bce2110d6e856c887b6cfa38b1783c7 (patch)
treef6b0c975f3c71d3cc3312bbb1ac817fc7f6206c1 /resources
parent95be32e54655819ea77591e78d0d8ec399cae765 (diff)
downloadlibrebootfr-f19a5cb32bce2110d6e856c887b6cfa38b1783c7.tar.gz
librebootfr-f19a5cb32bce2110d6e856c887b6cfa38b1783c7.zip
Add readme for the screen, stylus and trackpoint rotation script
Diffstat (limited to 'resources')
-rw-r--r--resources/utilities/x200t-screen-rotation/README.md64
1 files changed, 64 insertions, 0 deletions
diff --git a/resources/utilities/x200t-screen-rotation/README.md b/resources/utilities/x200t-screen-rotation/README.md
new file mode 100644
index 00000000..6ebe7728
--- /dev/null
+++ b/resources/utilities/x200t-screen-rotation/README.md
@@ -0,0 +1,64 @@
+Screen, stylus and trackpoint rotation
+======================================
+
+This folder contains the following bash script: `rotate.sh`
+
+
+Purpose
+-------
+
+Its purpose is to rotate the screen and/or Wacom stylus and/or
+trackpoint orientation for more comfortable drawing and writing on a
+touch screen. To use them your system should have the commands
+`xrandr` and `xsetwacom` available.
+
+
+Options
+-------
+
+The script accepts three command line options
+
+* `-s` Rotates the screen 90 degrees counterclockwise.
+
+* `-p` Sets the stylus input orientation to the same as the screen
+ orientation.
+
+* `-t` Sets the trackpoint orientation to the same as the screen
+ orientation.
+
+These can be combined, for example with `-stp` for rotating
+everything. The order of the options does not matter. The script will
+make sure that the screen is rotated first, and then sets the correct
+input device orientations.
+
+
+Why so many options?
+--------------------
+
+Different desktop environments do different things automatically. For
+example on the MATE-desktop in Parabola, pressing the bezel rotation
+button will always rotate the screen (but not the stylus), even when
+not using this script. Hence you could use `rotate.sh -pt` to fix the
+pen (stylus) and trackpoint orientations.
+
+On other systems the desktop environment might automatically update
+the stylus orientation whenever the screen orientation changes. In
+this case it is enough to rotate only the screen by `-s`.
+
+Lastly, if your desktop enviroment does absolutely nothing
+automatically, use `-spt`. This might be the case for example when
+useing LXDE.
+
+
+Conditions for redistribution
+-----------------------------
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or (at
+your option) any later version.
+
+This program is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the the file
+COPYING for more details.