## DO NOT EDIT this page directly, copy its content to a new page and save it there! Contact: brodul Make: Lenovo Brand: ThinkPad Model: X201T (X201 Tablet) Website: fixme == Current Issues == ## List any issues you have with the current development release here === 12.04.0 LTS === Everything is working fine, except the hibernation. ==== Tablet buttons ==== See this topic. http://ubuntuforums.org/showthread.php?t=1656632 ===== Flip screen ===== {{{ #!/bin/bash # 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 inverted xrandr -o inverted xsetwacom set "Serial Wacom Tablet" Rotate HALF xsetwacom set "Serial Wacom Tablet touch" Rotate HALF xsetwacom set "Serial Wacom Tablet eraser" Rotate HALF ;; inverted) # -rotate to normal xrandr -o normal xsetwacom set "Serial Wacom Tablet" Rotate NONE xsetwacom set "Serial Wacom Tablet touch" Rotate NONE xsetwacom set "Serial Wacom Tablet eraser" Rotate NONE ;; esac }}} == Hardware details == http://www.thinkwiki.org/wiki/Category:X201_Tablet === Notes === ## Add any notes here ---- CategoryLaptop