home · contact · privacy
Merge branch 'master' of github.com:plomlompom/config
[config] / jessie_start.sh
index 1ecf23bf1b3a4f11f12ad413850eca795796b0fa..29529d586d78baa6e534f711e8a398f33ed3af6e 100755 (executable)
@@ -44,6 +44,10 @@ tlp start
 # Don't clear boot messages on start up.
 sed -i 's/^TTYVTDisallocate=yes$/TTYVTDisallocate=no/g' /etc/systemd/system/getty.target.wants/getty\@tty1.service
 
+# Set up timezone.
+echo 'Europe/Berlin' > /etc/timezone
+cp /usr/share/zoneinfo/Europe/Berlin /etc/localtime
+
 # Console config.
 DEBIAN_FRONTEND=nointeractive apt-get -y install locales console-setup
 echo 'ACTIVE_CONSOLES="/dev/tty[1-6]"' > /etc/default/console-setup
@@ -54,6 +58,8 @@ echo 'FONTSIZE="8x16"' >> /etc/default/console-setup
 echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen
 locale-gen
 echo 'export LC_ALL="en_US.UTF-8"' >> /etc/profile
+sed -i 's/^XKBLAYOUT/XKBLAYOUT="de" # XKBLAYOUT/g' /etc/default/keyboard
+service keyboard-setup restart
 
 # Clone git repository.
 apt-get -y install ca-certificates
@@ -72,19 +78,36 @@ apt-get -y install vim
 mkdir -p .vimbackups
 su plom -c 'mkdir -p /home/plom/.vimbackups/'
 
+# Set up networking (wifi!).
+apt-get -y install firmware-iwlwifi
+DEBIAN_FRONTEND=noninteractive apt-get -y install wicd-curses
+sed -i 's/^wired_interface = .*$/wired_interface = eth0/g' /etc/wicd/manager-settings.conf
+sed -i 's/^wireless_interface = .*$/wireless_interface = wlan0/g' /etc/wicd/manager-settings.conf
+systemctl restart wicd
+
+# Set up hibernation on lid close.
+echo 'HandleLidSwitch=hibernate' >> /etc/systemd/logind.conf
+
 # Set up sound.
-usermod -G audio plom
+usermod -aG audio plom
 apt-get -y install alsa-utils
 amixer -c 0 sset Master playback 100% unmute
 
-# Set up networking (wifi!).
-apt-get -y install wicd-curses firmware-iwlwifi
-
-# Set up window system.
+# Set up window system and OpenGL.
 apt-get -y install xserver-xorg xinit xterm i3 i3status dmenu
 
+# Set up OpenGL and hardware acceleration.
+apt-get -y install libgl1-mesa-dri
+apt-get -y install i965-va-driver
+usermod -G video plom
+
+# Install xrandr.
+apt-get -y install x11-xserver-utils
+
 # Set up pentadactyl. 
 apt-get -y install xul-ext-pentadactyl
+apt-get -y install vim-gtk
+su plom -c 'mkdir -p /home/plom/downloads/'
 
 # Clean up.
 rm jessie_start.sh