X-Git-Url: https://plomlompom.com/repos/do_todos?a=blobdiff_plain;f=jessie_postinstall.sh;h=007d594a4ed8605347a2c83238997bb46b941df7;hb=baf69e50267bb32369c2d89dda091f41f70cf418;hp=24bea47cb504bf48aaf75da3420c67673463ea57;hpb=abdc027f7be1efc53fedf4448fcc89ece1a2b4b8;p=config diff --git a/jessie_postinstall.sh b/jessie_postinstall.sh index 24bea47..007d594 100755 --- a/jessie_postinstall.sh +++ b/jessie_postinstall.sh @@ -2,11 +2,16 @@ set -x set -e -if [ "$1" = "" ]; then +if [ ! "$1" = "thinkpad" ] && [ ! "$1" = "server" ]; then echo "Need argument." false fi +if [ "$1" = "thinkpad" ] && [ ! "$2" = "X200s" ] && [ ! "$2" = "T450s" ]; then + echo "Need Thinkpad type." + false +fi + if [ "$1" = "server" ]; then # Set root pw. passwd @@ -54,15 +59,25 @@ fi # Package management config, system upgrade. echo 'deb http://ftp.debian.org/debian/ jessie main contrib non-free' \ - >/etc/apt/sources.list -echo 'deb http://security.debian.org/ jessie/updates main contrib non-free' \ + > /etc/apt/sources.list +echo 'deb http://security.debian.org/ jessie/updates main contrib non-free' \ >> /etc/apt/sources.list echo 'deb http://ftp.debian.org/debian/ jessie-updates main contrib non-free' \ >> /etc/apt/sources.list -#echo 'deb http://ftp.debian.org/debian/ testing main contrib non-free' >> /etc/apt/sources.list -#echo 'deb http://security.debian.org/ testing/updates main contrib non-free' >> /etc/apt/sources.list -#echo 'deb http://ftp.debian.org/debian/ testing-updates main contrib non-free' >> /etc/apt/sources.list -#echo 'APT::Default-Release "stable"' >> /etc/apt/apt.conf.d/99defaultrelease +if [ "$1" = "thinkpad" ]; then + if [ "$2" = "T450s" ]; then + echo 'deb http://ftp.debian.org/debian/ jessie-backports main contrib' \ +' non-free' >> /etc/apt/sources.list + fi + echo 'deb http://ftp.debian.org/debian/ testing main contrib non-free' \ + >> /etc/apt/sources.list + echo 'deb http://security.debian.org/ testing/updates main contrib' \ +' non-free' >> /etc/apt/sources.list + echo 'deb http://ftp.debian.org/debian/ testing-updates main contrib' \ +' non-free' >> /etc/apt/sources.list + echo 'APT::Default-Release "stable";' \ + >> /etc/apt/apt.conf.d/99defaultrelease +fi dhclient eth0 apt-get update apt-get -y dist-upgrade @@ -123,7 +138,7 @@ config/bin/symlink.sh 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/bin/symlink.sh server' +su plom -c '/home/plom/config/bin/symlink.sh '$1 # Set up editor. mkdir -p .vimbackups @@ -186,15 +201,23 @@ elif [ "$1" = "thinkpad" ]; then # Set up sound. usermod -aG audio plom apt-get -y install alsa-utils - amixer -c 0 sset Master playback 100% unmute + if [ "$2" = "X200s" ]; then + amixer -c 0 sset Master playback 100% unmute + elif [ "$2" = "T450s" ]; then + amixer -c 1 sset Master playback 100% unmute + fi - # Set up window system and OpenGL. - apt-get -y install xserver-xorg xinit xterm i3 i3status dmenu + # Set up window system, i3, redshift. + apt-get -y install xserver-xorg xinit xterm i3 i3status dmenu redshift # Set up OpenGL and hardware acceleration. - apt-get -y install libgl1-mesa-dri - apt-get -y install i965-va-driver - usermod -aG video plom + if [ "$1" = "X220s" ]; then + apt-get -y install libgl1-mesa-dri + apt-get -y install i965-va-driver + usermod -aG video plom + elif [ "$2" = "T450s" ]; then + apt-get -y -t jessie-backports install xserver-xorg-video-intel + fi # Install xrandr. apt-get -y install x11-xserver-utils @@ -213,7 +236,7 @@ fi passwd plom # Clean up. -rm jessie_start.sh +rm jessie_postinstall.sh # Finalize everything with a reboot. reboot