home · contact · privacy
Further fix/extend post-install script.
[config] / jessie_start.sh
index fbb2d33c856fd29d75d27fe186c930e6c98fe487..1241dfd82089c064b7da5d2d4903335ad0695c8d 100755 (executable)
@@ -1,5 +1,6 @@
 #!/bin/sh
 set -x
+set -e
 
 # Post-installation reduction. (Answer "no" to GRUB question.)
 dpkg-query -Wf '${Package} ${Priority}\n' | grep ' required' | sed 's/ required//' > list_white_unsorted 
@@ -26,6 +27,25 @@ dhclient eth0
 apt-get update
 apt-get -y dist-upgrade
 
+# Set up manuals.
+apt-get -y install man-db manpages less
+
+# Set up editor.
+apt-get -y install vim
+mkdir -p .vimbackups
+su plom -c 'mkdir -p /home/plom/.vimbackups/'
+
+# Power management as per <http://thinkwiki.de/TLP_-_Linux_Stromsparen>.
+echo '' >> /etc/apt/sources.list
+echo 'deb http://repo.linrunner.de/debian jessie main' >> /etc/apt/sources.list
+apt-key adv --keyserver pool.sks-keyservers.net --recv-keys CD4E8809
+apt-get update
+apt-get -y install linux-headers-amd64 tlp tp-smapi-dkms
+sed -i 's/^#START_CHARGE_THRESH_BAT0/START_CHARGE_THRESH_BAT0=10 #START_CHARGE_THRESH_BAT0/' /etc/default/tlp
+sed -i 's/^#STOP_CHARGE_THRESH_BAT0/STOP_CHARGE_THRESH_BAT0=95 #STOP_CHARGE_THRESH_BAT0/' /etc/default/tlp
+sed -i 's/^#DEVICES_TO_DISABLE_ON_STARTUP/DEVICES_TO_DISABLE_ON_STARTUP="bluetooth wifi wwan" #DEVICES_TO_DISABLE_ON_STARTUP/' /etc/default/tlp
+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
 
@@ -40,13 +60,34 @@ echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen
 locale-gen
 echo 'export LC_ALL="en_US.UTF-8"' >> /etc/profile
 
-#apt-get -y install xserver-xorg xinit i3
+# Clone git repository.
+apt-get -y install ca-certificates
+apt-get -y install git
+git clone http://github.com/plomlompom/config
+config/symlink.sh
 
-# Install certificates.
-#apt-get -y install ca-certificates
+# Add user. Remove old user's config/ if it exists.
+useradd -m -s /bin/bash plom
+rm -rf /home/plom/config
+su - plom -c 'git clone http://github.com/plomlompom/config /home/plom/config'
+su plom -c /home/plom/config/symlink.sh
+
+# Set up sound.
+usermod -G 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.
-#apt-get -y install xserver-xorg xinit i3 i3status
+apt-get -y install xserver-xorg xinit xterm i3 i3status dmenu
+
+# Set up pentadactyl. 
+apt-get -y install xul-ext-pentadactyl
+
+# Clean up.
+rm jessie_start.sh
 
-# Add user.
-#useradd -m -s /bin/bash plom
+# Set password for user.
+passwd plom