diff --git a/arch-graphical-install-auto b/arch-graphical-install-auto index f346cd7..64967e6 100755 --- a/arch-graphical-install-auto +++ b/arch-graphical-install-auto @@ -828,6 +828,10 @@ if [ "$version" != "lite" ] && [ "$skip" != "skip" ]; then cp /opt/${repo}/*.jpg /usr/share/backgrounds/xfce/ chmod 755 -Rv /usr/share/backgrounds/xfce/ + # grub_background + mkdir -p /usr/share/grub/ + cp grub_background.png /usr/share/grub/background.png + if [ "$version" != "pi" ] && [ "$packageupdate" != "skip" ]; then # zusatzsoftware su "$username" -c "aurinstaller "https://aur.archlinux.org/google-chrome.git"" diff --git a/arch-install b/arch-install index cb21d45..d6f8edd 100755 --- a/arch-install +++ b/arch-install @@ -566,6 +566,7 @@ function installation { function grubinstall() { sed -i 's/GRUB_DISTRIBUTOR=.*$/GRUB_DISTRIBUTOR=\"'$repo'\"/' ${mountpoint}/etc/default/grub sed -i 's/GRUB_CMDLINE_LINUX_DEFAULT=.*$/GRUB_CMDLINE_LINUX_DEFAULT="splash"/' ${mountpoint}/etc/default/grub + sed -i 's/GRUB_BACKGROUND=.*$/GRUB_BACKGROUND="/usr/share/grub/background.png"/' ${mountpoint}/etc/default/grub if [ "${verschluesselung}" == "y" ]; then tobootdevice=$(blkid -s PARTUUID -o value ${device}${rootpartitionnummer}) if [ "${swap}" != "n" ]; then diff --git a/grub_background.png b/grub_background.png new file mode 100644 index 0000000..a8a7ba2 Binary files /dev/null and b/grub_background.png differ