1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-07 04:58:26 +00:00

Set gconf key for theme name on install

git-svn-id: https://svn.o-hand.com/repos/poky@137 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Ross Burton
2005-10-14 08:54:23 +00:00
parent 11c91fb9bb
commit 70f1fb9c4d
@@ -2,7 +2,7 @@ DESCRIPTION = "Custom MB session files for poky"
LICENSE = "GPL" LICENSE = "GPL"
SECTION = "x11" SECTION = "x11"
RDEPENDS = "matchbox matchbox-applet-startup-monitor gtk-theme-clearlooks" RDEPENDS = "matchbox matchbox-applet-startup-monitor gtk-theme-clearlooks"
PR = "r10" PR = "r11"
SRC_URI = "file://etc" SRC_URI = "file://etc"
S = ${WORKDIR} S = ${WORKDIR}
@@ -11,3 +11,8 @@ do_install() {
cp -R ${S}/etc ${D}/etc cp -R ${S}/etc ${D}/etc
chmod -R 755 ${D}/etc chmod -R 755 ${D}/etc
} }
pkg_postinst_matchbox-poky () {
#!/bin/sh -e
gconftool --config-source=xml::${IMAGE_ROOTFS}/${sysconfdir}/gconf/gconf.xml.defaults --direct --type string --set /desktop/poky/theme Clearlooks
}