diff options
Diffstat (limited to 'stage3/01-tweaks/00-run.sh')
-rwxr-xr-x | stage3/01-tweaks/00-run.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/stage3/01-tweaks/00-run.sh b/stage3/01-tweaks/00-run.sh new file mode 100755 index 0000000..0b0f1bc --- /dev/null +++ b/stage3/01-tweaks/00-run.sh @@ -0,0 +1,15 @@ +#!/bin/bash -e + +on_chroot sh -e - <<EOF +update-alternatives --set libgksu-gconf-defaults /usr/share/libgksu/debian/gconf-defaults.libgksu-sudo +update-gconf-defaults +EOF + +on_chroot sh -e - <<EOF +update-alternatives --install /usr/share/images/desktop-base/desktop-background \ +desktop-background /usr/share/raspberrypi-artwork/raspberry-pi-logo.png 100 +EOF + +rm -f ${ROOTFS_DIR}/etc/systemd/system/dhcpcd.service.d/wait.conf +install -m 644 files/55-storage.pkla ${ROOTFS_DIR}/etc/polkit-1/localauthority/50-local.d/ +install -m 644 files/75source-profile ${ROOTFS_DIR}/etc/X11/Xsession.d/ |