diff options
Diffstat (limited to 'provision/desktop-basic')
| -rwxr-xr-x | provision/desktop-basic | 5 | 
1 files changed, 5 insertions, 0 deletions
| 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 | 
