diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-09-27 18:21:13 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-09-27 18:21:13 +0000 |
commit | 3e43b39b82cd49920057b17ccbb50eca867fd632 (patch) | |
tree | ede52db7524291d5649215eef510e4ef76dabdd1 | |
parent | cac840c152916b374be4913cf59303488f118521 (diff) |
fix X11 rotation on clamshell models. patch courtesy XorA
BKrev: 41585a19WSrt5Zoo9lAWWsjpCQI5mg
-rw-r--r-- | gpe-session-scripts/gpe-session-scripts-0.61/zaurus.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gpe-session-scripts/gpe-session-scripts-0.61/zaurus.sh b/gpe-session-scripts/gpe-session-scripts-0.61/zaurus.sh index 945d2f04bd..61ca84b595 100644 --- a/gpe-session-scripts/gpe-session-scripts-0.61/zaurus.sh +++ b/gpe-session-scripts/gpe-session-scripts-0.61/zaurus.sh @@ -1,12 +1,12 @@ #!/bin/sh if [ -z "`which chkhinge`" ]; then - # probably not a zaurus + # probably not a clamshell zaurus exit 0 fi chkhinge -e -if [ $? = 10 ]; then +if [ $? = 12 ]; then xrandr -o right fi |