added chkhinger26

git-svn-id: https://svn.o-hand.com/repos/poky@106 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Matthew Allum 2005-10-03 17:33:10 +00:00
parent 96b751e6b7
commit c632d3effa
2 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,18 @@
LICENSE = "LGPL"
SECTION = "x11"
#DEPENDS = "glib-2.0 gtk+ libglade eds-dbus"
MAINTAINER = "Matthew Allum <mallum@openedhand.com>"
DESCRIPTION = "Chkhinge26 fires off cmds on cXXXX Zs."
PR = "r0"
SRC_URI = "http://butterfeet.org/misc/${PN}-${PV}.tar.gz \
file://hinge-handler"
inherit autotools pkgconfig
do_install_append () {
install -m 0755 ${WORKDIR}/hinge-handler ${D}/${BINDIR}/
}
FILES_${PN} += "${BINDIR}/hinge-handler"

View File

@ -0,0 +1,33 @@
#!/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"
apm -s
exit 0
fi
if [ $STATE = "0" ]; then
echo "lanscape"
killall mbinputmgr
xrand -o normal
exit 0
fi
if [ $STATE = "2" ]; then
echo "portrait"
mbinputmgr &
xrandr -o left
exit 0
fi