Kommentare zu: Ubuntu 8.10 auf dem TC4400 /linux/2008/12/04/ubuntu-810-auf-dem-tc4400/ Linux, Open Source und Co. Tue, 27 Oct 2009 11:39:41 +0100 /?v=2.8.3 hourly 1 Von: Daniel /linux/2008/12/04/ubuntu-810-auf-dem-tc4400/comment-page-1/#comment-5 Daniel Sun, 12 Apr 2009 08:07:28 +0000 /linux/?p=22#comment-5 Hi, also bei mir klappt das rotieren mit einem kleinen Skript ganz gut. Es wird bei mir auch die Mausausrichtung geändert. Die rechte Maustaste funktioniert bei mir, wie unter Windows auch, wenn man die kleine Taste am Stift drückt und gleichzeitig auf den Bildschirm tippt. Dazu muss allerdings eine kleine Änderung in der xorg.conf gemacht werden. Hier mal mein Skript zum rotieren: #!/bin/sh # Find the line in "xrandr -q --verbose" output that contains current screen orientation and "strip" out current orientation. rotation="$(xrandr -q --verbose | grep 'connected' | egrep -o '\) (normal|left|inverted|right) \(' | egrep -o '(normal|left|inverted|right)')" # Using current screen orientation proceed to rotate screen and input tools. case "$rotation" in normal) # -rotate to the left xrandr -o left xsetwacom set stylus rotate CCW # xsetwacom set touch rotate CCW xsetwacom set eraser rotate CCW ;; left) # -rotate to inverted xrandr -o inverted xsetwacom set stylus rotate HALF # xsetwacom set touch rotate HALF xsetwacom set eraser rotate HALF ;; inverted) # -rotate to the right xrandr -o right xsetwacom set stylus rotate CW # xsetwacom set touch rotate CW xsetwacom set eraser rotate CW ;; right) # -rotate to normal xrandr -o normal xsetwacom set stylus rotate NONE # xsetwacom set touch rotate NONE xsetwacom set eraser rotate NONE ;; esac Hi,
also bei mir klappt das rotieren mit einem kleinen Skript ganz gut. Es wird bei mir auch die Mausausrichtung geändert.
Die rechte Maustaste funktioniert bei mir, wie unter Windows auch, wenn man die kleine Taste am Stift drückt und gleichzeitig auf den Bildschirm tippt. Dazu muss allerdings eine kleine Änderung in der xorg.conf gemacht werden.

Hier mal mein Skript zum rotieren:

#!/bin/sh

# Find the line in “xrandr -q –verbose” output that contains current screen orientation and “strip” out current orientation.

rotation=”$(xrandr -q –verbose | grep ‘connected’ | egrep -o ‘\) (normal|left|inverted|right) \(’ | egrep -o ‘(normal|left|inverted|right)’)”

# Using current screen orientation proceed to rotate screen and input tools.

case “$rotation” in
normal)
# -rotate to the left
xrandr -o left
xsetwacom set stylus rotate CCW
# xsetwacom set touch rotate CCW
xsetwacom set eraser rotate CCW
;;
left)
# -rotate to inverted
xrandr -o inverted
xsetwacom set stylus rotate HALF
# xsetwacom set touch rotate HALF
xsetwacom set eraser rotate HALF
;;
inverted)
# -rotate to the right
xrandr -o right
xsetwacom set stylus rotate CW
# xsetwacom set touch rotate CW
xsetwacom set eraser rotate CW
;;
right)
# -rotate to normal
xrandr -o normal
xsetwacom set stylus rotate NONE
# xsetwacom set touch rotate NONE
xsetwacom set eraser rotate NONE
;;
esac

]]>