diff options
-rw-r--r-- | meta/packages/matchbox-sato/matchbox-sato/matchbox-session | 24 | ||||
-rw-r--r-- | meta/packages/matchbox-sato/matchbox-sato_0.1.bb | 9 |
2 files changed, 30 insertions, 3 deletions
diff --git a/meta/packages/matchbox-sato/matchbox-sato/matchbox-session b/meta/packages/matchbox-sato/matchbox-sato/matchbox-session new file mode 100644 index 0000000000..65f1ce72ca --- /dev/null +++ b/meta/packages/matchbox-sato/matchbox-sato/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 $@ | ||
diff --git a/meta/packages/matchbox-sato/matchbox-sato_0.1.bb b/meta/packages/matchbox-sato/matchbox-sato_0.1.bb index ff9144f6ab..dd03539f28 100644 --- a/meta/packages/matchbox-sato/matchbox-sato_0.1.bb +++ b/meta/packages/matchbox-sato/matchbox-sato_0.1.bb | |||
@@ -1,13 +1,16 @@ | |||
1 | DESCRIPTION = "Custom MB session files for poky" | 1 | DESCRIPTION = "Custom MB session files for poky" |
2 | LICENSE = "GPL" | 2 | LICENSE = "GPL" |
3 | SECTION = "x11" | 3 | SECTION = "x11" |
4 | RDEPENDS = "matchbox-common matchbox-applet-startup-monitor gtk-sato-engine matchbox-theme-sato gtk-theme-sato matchbox-panel-2" | 4 | RDEPENDS = "matchbox-applet-startup-monitor gtk-sato-engine matchbox-theme-sato gtk-theme-sato matchbox-panel-2 matchbox-desktop-sato" |
5 | PR = "r13" | 5 | RCONFLICTS = "matchbox-common" |
6 | PR = "r14" | ||
6 | 7 | ||
7 | SRC_URI = "file://etc" | 8 | SRC_URI = "file://etc file://matchbox-session" |
8 | S = ${WORKDIR} | 9 | S = ${WORKDIR} |
9 | 10 | ||
10 | do_install() { | 11 | do_install() { |
12 | install -d ${D}/${bindir} | ||
13 | install -m 0755 ${S}/matchbox-session ${D}/${bindir} | ||
11 | cp -R ${S}/etc ${D}/etc | 14 | cp -R ${S}/etc ${D}/etc |
12 | rm -fR ${D}/etc/.svn | 15 | rm -fR ${D}/etc/.svn |
13 | rm -fR ${D}/etc/matchbox/.svn | 16 | rm -fR ${D}/etc/matchbox/.svn |