mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
Co-authored-by: Miouyouyou (Myy) <myy@miouyouyou.fr> Co-authored-by: Igor Pečovnik <igorpecovnik@users.noreply.github.com> Co-authored-by: Richard Neese <r.neese@gmail.com> Co-authored-by: iav <iav@iav.lv> Co-authored-by: lanefu <lanefu@users.noreply.github.com> Co-authored-by: Werner <EvilOlaf@users.noreply.github.com> Co-authored-by: Oleg <balbes-150@yandex.ru> Co-authored-by: Lane Jennison <lane@lane-fu.com> Co-authored-by: JMCC <jmcc1@gmx.com>
33 lines
1.2 KiB
Bash
33 lines
1.2 KiB
Bash
# install default desktop settings
|
|
mkdir -p "${destination}"/etc/skel
|
|
cp -R "${SRC}"/packages/blobs/desktop/skel/. "${destination}"/etc/skel
|
|
|
|
# install logo for login screen
|
|
mkdir -p "${destination}"/usr/share/pixmaps/armbian
|
|
cp "${SRC}"/packages/blobs/desktop/icons/armbian.png "${destination}"/usr/share/pixmaps/armbian
|
|
|
|
# install wallpapers
|
|
mkdir -p "${destination}"/usr/share/backgrounds/gnome/
|
|
cp "${SRC}"/packages/blobs/desktop/wallpapers/armbian*.jpg "${destination}"/usr/share/backgrounds/gnome/
|
|
mkdir -p "${destination}"/usr/share/gnome-background-properties
|
|
cat <<-EOF > "${destination}"/usr/share/gnome-background-properties/armbian.xml
|
|
<?xml version="1.0"?>
|
|
<!DOCTYPE wallpapers SYSTEM "gnome-wp-list.dtd">
|
|
<wallpapers>
|
|
<wallpaper deleted="false">
|
|
<name>Armbian light</name>
|
|
<filename>/usr/share/backgrounds/gnome/armbian18-Dre0x-Minum-light-3840x2160.jpg</filename>
|
|
<options>zoom</options>
|
|
<pcolor>#ffffff</pcolor>
|
|
<scolor>#000000</scolor>
|
|
</wallpaper>
|
|
<wallpaper deleted="false">
|
|
<name>Armbian dark</name>
|
|
<filename>/usr/share/backgrounds/gnome/armbian03-Dre0x-Minum-dark-3840x2160.jpg</filename>
|
|
<options>zoom</options>
|
|
<pcolor>#ffffff</pcolor>
|
|
<scolor>#000000</scolor>
|
|
</wallpaper>
|
|
</wallpapers>
|
|
EOF
|