diff options
author | Richard Purdie <richard@openedhand.com> | 2006-05-22 22:13:36 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-05-22 22:13:36 +0000 |
commit | a21cef816585683556abd873c83ed0fdb5938f32 (patch) | |
tree | 35bdc6e15973a1e26d85e3a8b6b849d247410fe6 /openembedded/packages/matchbox-poky | |
parent | 0457b7ca524947207c0f5b5755bcb7943dd191c2 (diff) | |
download | openembedded-core-a21cef816585683556abd873c83ed0fdb5938f32.tar.gz openembedded-core-a21cef816585683556abd873c83ed0fdb5938f32.tar.bz2 openembedded-core-a21cef816585683556abd873c83ed0fdb5938f32.zip |
matchbox-poky: Allow the cursor to be shown when using qemuarm
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@404 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/matchbox-poky')
-rwxr-xr-x | openembedded/packages/matchbox-poky/matchbox-poky/etc/matchbox/session | 8 | ||||
-rw-r--r-- | openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/openembedded/packages/matchbox-poky/matchbox-poky/etc/matchbox/session b/openembedded/packages/matchbox-poky/matchbox-poky/etc/matchbox/session index 2806094a79..fede9e44b9 100755 --- a/openembedded/packages/matchbox-poky/matchbox-poky/etc/matchbox/session +++ b/openembedded/packages/matchbox-poky/matchbox-poky/etc/matchbox/session @@ -4,6 +4,8 @@ module_id() { awk 'BEGIN { FS=": " } /Hardware/ { print $2 } ' </proc/cpuinfo } +SHOWCURSOR="no" + ## Start up machine specific input devices. Really needs to go in its own session case `module_id` in "SHARP Shepherd" | "SHARP Husky" | "SHARP Corgi" | "SHARP Spitz" | "SHARP Akita" | "SHARP Borzoi") @@ -12,6 +14,10 @@ case `module_id` in "Generic OMAP1510/1610/1710") /usr/bin/mbinputmgr & ;; + "ARM-IntegratorCP") + /usr/bin/mbinputmgr & + SHOWCURSOR="yes" + ;; esac ## All this should be done by themeing/xsettings.. ## @@ -32,6 +38,6 @@ matchbox-panel --orientation east \ --default-apps mb-applet-home,mb-applet-clock,mb-applet-battery & ## eek ugly no cursor hack - transparent theme should do this -exec matchbox-window-manager -theme Clearlooks -use_cursor no $@ +exec matchbox-window-manager -theme Clearlooks -use_cursor $SHOWCURSOR $@ diff --git a/openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb b/openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb index 5cc114666b..c2e3e3282c 100644 --- a/openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb +++ b/openembedded/packages/matchbox-poky/matchbox-poky_0.1.bb @@ -2,7 +2,7 @@ DESCRIPTION = "Custom MB session files for poky" LICENSE = "GPL" SECTION = "x11" RDEPENDS = "matchbox matchbox-applet-startup-monitor gtk-theme-clearlooks" -PR = "r12" +PR = "r13" SRC_URI = "file://etc" S = ${WORKDIR} |