summaryrefslogtreecommitdiff
path: root/meta/packages/matchbox-keyboard/files
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2007-05-29 19:02:03 +0000
committerRichard Purdie <richard@openedhand.com>2007-05-29 19:02:03 +0000
commit25152eb8e7e5da2268fef8397bd5abad7c255d91 (patch)
treed5067722d20faf3ed8c60468cc97b74fa8c6cde8 /meta/packages/matchbox-keyboard/files
parent12a09987de4356cb507cf4e31ac4d1a7294d4772 (diff)
downloadopenembedded-core-25152eb8e7e5da2268fef8397bd5abad7c255d91.tar.gz
openembedded-core-25152eb8e7e5da2268fef8397bd5abad7c255d91.tar.bz2
openembedded-core-25152eb8e7e5da2268fef8397bd5abad7c255d91.tar.xz
openembedded-core-25152eb8e7e5da2268fef8397bd5abad7c255d91.zip
matchbox-keyboard: Add session script to handle startup (linked to formfactor)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1809 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/matchbox-keyboard/files')
-rwxr-xr-xmeta/packages/matchbox-keyboard/files/80matchboxkeyboard23
1 files changed, 23 insertions, 0 deletions
diff --git a/meta/packages/matchbox-keyboard/files/80matchboxkeyboard b/meta/packages/matchbox-keyboard/files/80matchboxkeyboard
new file mode 100755
index 000000000..60d9ff0e5
--- /dev/null
+++ b/meta/packages/matchbox-keyboard/files/80matchboxkeyboard
@@ -0,0 +1,23 @@
+#!/bin/sh
+
+. /etc/formfactor/config
+
+CMD=""
+
+if [ "$DISPLAY_CAN_ROTATE" = "1" ]; then
+ if [ "$HAVE_KEYBOARD_PORTRAIT" = "1" -a "$HAVE_KEYBOARD_LANDSCAPE" = "0" ]; then
+ CMD="matchbox-keyboard -d -o landscape"
+ elif [ "$HAVE_KEYBOARD_LANDSCAPE" = "1" -a "$HAVE_KEYBOARD_PORTRAIT" = "0" ]; then
+ CMD="matchbox-keyboard -d -o portrait"
+ fi
+elif [ "$HAVE_KEYBOARD" = "1" ]; then
+ # Have a physical keyboard, nothing to do
+ exit
+fi
+
+# Delay to make sure the window manager is active
+
+if [ "$CMD" ]; then
+ (sleep 2 && $CMD) &
+fi
+