aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/zaurus-hinge.in
blob: 4d00a458a0440b9b15e625fee0fbbe722611b8f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/sh
#
# Quick handler for chkhinge26 and X. 
#

export DISPLAY=:0

if [ -z "$1" ]; then
   echo "Usage: hinge-handler <state> ( 3 = closed, 0 = landscape, 2 = portrait )"
   exit 1
fi

STATE=$1

if [ $STATE = "3" ]; then
  #echo "sleeping"
  if [ -x @bindir@/apm ]; then
    apm -s
  fi
  exit 0
fi

if [ $STATE = "0" ]; then
  #echo "lanscape"
  if [ -x @bindir@/xrandr ]; then
    xrandr -o normal
  fi
  exit 0
fi

if [ $STATE = "2" ]; then
  #echo "portrait"
  if [ -x @bindir@/xrandr ]; then
    @bindir@/xrandr -o left 
  fi
  exit 0
fi