diff options
-rwxr-xr-x | meta/packages/matchbox-poky/matchbox-poky/etc/matchbox/session | 21 | ||||
-rw-r--r-- | meta/packages/matchbox-poky/matchbox-poky_0.1.bb | 24 |
2 files changed, 0 insertions, 45 deletions
diff --git a/meta/packages/matchbox-poky/matchbox-poky/etc/matchbox/session b/meta/packages/matchbox-poky/matchbox-poky/etc/matchbox/session deleted file mode 100755 index 4eea748d44..0000000000 --- a/meta/packages/matchbox-poky/matchbox-poky/etc/matchbox/session +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | SHOWCURSOR="no" | ||
4 | |||
5 | ## All this should be done by themeing/xsettings.. ## | ||
6 | matchbox-desktop --icon-size 48 \ | ||
7 | --icon-padding 64 \ | ||
8 | --font sans-8:bold \ | ||
9 | --titlefont sans-8:bold & | ||
10 | |||
11 | mb-applet-startup-monitor & | ||
12 | |||
13 | matchbox-panel --orientation east \ | ||
14 | --padding 4 \ | ||
15 | --no-menu \ | ||
16 | --no-session \ | ||
17 | --default-apps mb-applet-home,mb-applet-clock,mb-applet-battery & | ||
18 | |||
19 | exec matchbox-window-manager -use_cursor $SHOWCURSOR $@ | ||
20 | |||
21 | |||
diff --git a/meta/packages/matchbox-poky/matchbox-poky_0.1.bb b/meta/packages/matchbox-poky/matchbox-poky_0.1.bb deleted file mode 100644 index c7f0ec603b..0000000000 --- a/meta/packages/matchbox-poky/matchbox-poky_0.1.bb +++ /dev/null | |||
@@ -1,24 +0,0 @@ | |||
1 | DESCRIPTION = "Custom MB session files for poky" | ||
2 | LICENSE = "GPL" | ||
3 | SECTION = "x11" | ||
4 | RDEPENDS = "matchbox-common matchbox-applet-startup-monitor gtk-theme-clearlooks" | ||
5 | PR = "r24" | ||
6 | |||
7 | SRC_URI = "file://etc" | ||
8 | S = ${WORKDIR} | ||
9 | |||
10 | do_install() { | ||
11 | cp -R ${S}/etc ${D}/etc | ||
12 | rm -fR ${D}/etc/.svn | ||
13 | rm -fR ${D}/etc/matchbox/.svn | ||
14 | chmod -R 755 ${D}/etc | ||
15 | } | ||
16 | |||
17 | pkg_postinst_matchbox-poky () { | ||
18 | #!/bin/sh -e | ||
19 | if [ "x$D" != "x" ]; then | ||
20 | exit 1 | ||
21 | fi | ||
22 | |||
23 | gconftool-2 --config-source=xml::$D${sysconfdir}/gconf/gconf.xml.defaults --direct --type string --set /desktop/poky/interface/theme Clearlooks | ||
24 | } | ||