It was in meta-mortsgna but others should have a more pretty initial experience Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
16 lines
367 B
BlitzBasic
16 lines
367 B
BlitzBasic
SUMMARY = "Cinnamon default user configuration"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
|
|
inherit allarch
|
|
|
|
SRC_URI = " \
|
|
file://.config \
|
|
"
|
|
|
|
do_install() {
|
|
# default user configration -> /etc/skel
|
|
install -d ${D}${sysconfdir}/skel
|
|
cp -r ${WORKDIR}/.config ${D}${sysconfdir}/skel/
|
|
}
|