From 0f7507a977ad2d8819bb8a797a7b4c36e0341063 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sun, 12 Mar 2017 18:28:21 -0300 Subject: Provision: check for .custom/xsession --- provision/desktop-basic | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'provision/desktop-basic') diff --git a/provision/desktop-basic b/provision/desktop-basic index dcff04a..69636b7 100755 --- a/provision/desktop-basic +++ b/provision/desktop-basic @@ -26,6 +26,9 @@ DOMAIN="$2" MIRROR="$3" APT_INSTALL="sudo LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get install -y" +# Ensure we are in the user home folder +cd + # Configure keyboard cat <<-EOF | sudo tee /etc/default/keyboard > /dev/null # KEYBOARD CONFIGURATION FILE @@ -63,6 +66,7 @@ sudo cp $DIRNAME/files/desktop-basic/etc/lightdm/lightdm.conf /etc/lightdm/light mkdir -p .custom +if [ ! -e ".custom/xsession" ]; then cat <<-EOF | tee .custom/xsession > /dev/null # # Custom X11 session config @@ -87,6 +91,7 @@ xrandr --addmode Virtual-0 1368x748_60.00 #xrandr --output Virtual-0 --mode 1368x748_60.00 xrandr --output Virtual-0 --mode 1280x780_60.00 EOF +fi # Mozilla configuration if [ ! -d ".mozilla" ]; then -- cgit v1.2.3