diff options
| author | Richard Purdie <richard@openedhand.com> | 2007-08-14 12:34:51 +0000 |
|---|---|---|
| committer | Richard Purdie <richard@openedhand.com> | 2007-08-14 12:34:51 +0000 |
| commit | da5f93acafbdd3d74488945db29782f757d35d49 (patch) | |
| tree | 2add49a5f28d35914f37e315e9c6de477a5c8f75 /meta-openmoko/packages/openmoko2/openmoko-session2/matchbox-session | |
| parent | fd817142ba52cd0b15d5836112ead2fb00b7f4c4 (diff) | |
| download | poky-da5f93acafbdd3d74488945db29782f757d35d49.tar.gz | |
Add meta-openmoko
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2492 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta-openmoko/packages/openmoko2/openmoko-session2/matchbox-session')
| -rw-r--r-- | meta-openmoko/packages/openmoko2/openmoko-session2/matchbox-session | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-openmoko/packages/openmoko2/openmoko-session2/matchbox-session b/meta-openmoko/packages/openmoko2/openmoko-session2/matchbox-session new file mode 100644 index 0000000000..65f1ce72ca --- /dev/null +++ b/meta-openmoko/packages/openmoko2/openmoko-session2/matchbox-session | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | # | ||
| 3 | # Very simple session manager for matchbox tools | ||
| 4 | # | ||
| 5 | |||
| 6 | # Uncomment below to enable parsing of debian menu entrys | ||
| 7 | # export MB_USE_DEB_MENUS=1 | ||
| 8 | |||
| 9 | if [ -e $HOME/.matchbox/session ] | ||
| 10 | then | ||
| 11 | exec $HOME/.matchbox/session | ||
| 12 | fi | ||
| 13 | |||
| 14 | if [ -e /etc/matchbox/session ] | ||
| 15 | then | ||
| 16 | exec /etc/matchbox/session | ||
| 17 | fi | ||
| 18 | |||
| 19 | # Default files to run if $HOME/.matchbox/session or /etc/matchbox/session | ||
| 20 | # dont exist. | ||
| 21 | |||
| 22 | matchbox-desktop & | ||
| 23 | matchbox-panel --orientation south & | ||
| 24 | exec matchbox-window-manager $@ | ||
