angstrom gdm xfce hack: hack to make xfce the default session, the gnome one is hardcoded into the source

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
This commit is contained in:
Koen Kooi
2011-10-15 12:27:34 +02:00
parent 82448b239d
commit e336204910

View File

@@ -0,0 +1,18 @@
DESCRIPTION = "Set XFCE session as default in GDM config (custom.conf)"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
inherit allarch
ALLOW_EMPTY_${PN} = "1"
pkg_postinst_${PN}() {
#!/bin/sh
grep "xfce" $D/etc/gdm/custom.conf
if [ $? -eq 0 ]; then
echo "NOTE:: custom.conf already has 'xfce' configured - not patching"
else
sed -i -e 's:\[daemon\]:\[daemon\]\nDefaultSession=xfce:' $D/etc/gdm/custom.conf
fi
}
RDEPENDS_${PN} = "gdm"