diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-03-16 10:55:55 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-03-16 10:55:55 -0300 |
commit | 4478c5bec3f8726204be35a96d0302c45743e29d (patch) | |
tree | 26ced62ee0a257a8d4446f80c80a35a89ec1dddf /provision/desktop-basic | |
parent | 68ca1f745aa3800e070f2b67a6c920f40bf8a7c7 (diff) | |
download | kvmx-4478c5bec3f8726204be35a96d0302c45743e29d.tar.gz kvmx-4478c5bec3f8726204be35a96d0302c45743e29d.tar.bz2 |
Updates provisioning
Diffstat (limited to 'provision/desktop-basic')
-rwxr-xr-x | provision/desktop-basic | 51 |
1 files changed, 8 insertions, 43 deletions
diff --git a/provision/desktop-basic b/provision/desktop-basic index 773bfba..24c71af 100755 --- a/provision/desktop-basic +++ b/provision/desktop-basic @@ -29,20 +29,6 @@ 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 - -# Consult the keyboard(5) manual page. - -XKBMODEL="abnt2" -XKBLAYOUT="br" -XKBVARIANT="thinkpad" -XKBOPTIONS="compose:ralt,terminate:ctrl_alt_bksp" - -BACKSPACE="guess" -EOF - # Dependencies sudo sed -i -e "s|main$|main contrib non-free|g" /etc/apt/sources.list sudo apt-get update && sudo apt-get upgrade -y && sudo apt-get autoremove -y && sudo apt-get clean @@ -59,39 +45,18 @@ apps/inception init apps/inception load-bundle desktop-basic apps/inception deps-bundle desktop-basic -# Environment -$APT_INSTALL lightdm ratpoison awesome firefox-esr chromium torbrowser-launcher +# Additional packages +$APT_INSTALL lightdm firefox-esr chromium torbrowser-launcher -# Configuration +# System-wide configuration sudo cp $DIRNAME/files/desktop-basic/etc/lightdm/lightdm.conf /etc/lightdm/lightdm.conf +sudo cp $DIRNAME/files/desktop-basic/etc/default/keyboard /etc/default/keyboard -mkdir -p .custom - -if [ ! -e ".custom/xsession" ]; then -cat <<-EOF | tee .custom/xsession > /dev/null -# -# Custom X11 session config -# -WINDOW_MANAGER="ratpoison" -PROGRAMS="\$PROGRAMS terminal" - -# -# Set screen size -# - -# On stretch onwards Virtual-0 was renamed to Virtual-0 -# Modeline determined by running "cvt 1280 780" -xrandr --newmode "1280x780_60.00" 81.50 1280 1352 1480 1680 780 783 793 810 -hsync +vsync -xrandr --addmode Virtual-0 1280x780_60.00 - -# Modeline determined by running "cvt 1368 748" -xrandr --newmode "1368x748_60.00" 83.00 1368 1440 1576 1784 748 751 761 777 -hsync +vsync -xrandr --addmode Virtual-0 1368x748_60.00 +# User configuration +mkdir -p $HOME/.custom -# Set default modeline -#xrandr --output Virtual-0 --mode 1368x748_60.00 -xrandr --output Virtual-0 --mode 1280x780_60.00 -EOF +if [ ! -e "$HOME/.custom/xsession" ]; then + cp $DIRNAME/files/desktop-basic/home/user/.custom/xsession $HOME/.custom/xsession fi # Mozilla configuration |