#!/bin/bash

PATH=/sbin:/usr/sbin:/bin:/usr/bin

. /lib/init/vars.sh
. /lib/lsb/init-functions

do_wait_apt_update() {
	while true; do
		apt update -y 2>&1 | grep -e '^Err:' -e '^[WE]:'
		[ $? = 1 ] && break
		sleep 1
	done
}

# Tweak to prevent Gnome Terminal does not open
sed -i "/LC_ALL/d" /etc/default/locale
echo "LC_ALL=\"en_US.UTF-8\"" >> /etc/default/locale

file:///usr/share/backgrounds/joshua-coleman-something-yellow.jpg

#update-initramfs -u

exit 0
