From: Silvio Rhatto Date: Sun, 12 Mar 2017 21:28:21 +0000 (-0300) Subject: Provision: check for .custom/xsession X-Git-Tag: 0.1.0~547 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=0f7507a977ad2d8819bb8a797a7b4c36e0341063;p=kvmx.git Provision: check for .custom/xsession --- 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