angstrom-clearlooks-theme-enable: recipe for globally enable clearlooks

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
This commit is contained in:
Koen Kooi
2011-07-26 07:26:22 +02:00
parent aa0ceed2ad
commit a67abc89af

View File

@@ -0,0 +1,18 @@
DESCRIPTION = "Enable clearlooks theme in gtkrc"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
inherit allarch
RDEPENDS_${PN} = "gtk-theme-clearlooks"
ALLOW_EMPTY_${PN} = "1"
pkg_postinst() {
#!/bin/sh
mkdir -p $D${sysconfdir}/gtk-2.0
touch $D${sysconfdir}/gtk-2.0/gtkrc
sed -i /gtk-theme-name/d $D${sysconfdir}/gtk-2.0/gtkrc
echo 'gtk-theme-name = "Clearlooks"' >> $D${sysconfdir}/gtk-2.0/gtkrc
}