This commit is contained in:
Cyteen May 2019-04-13 15:44:40 +01:00
commit f7e7f73e84
3 changed files with 19 additions and 0 deletions

View File

@ -4,6 +4,7 @@ apt-get -y install tree
apt-get -y install tmux
apt-get -y install xclip
apt-get -y install xsel
apt-get -y install neofetch
apt-get -y install sshpass
apt-get -y install git
apt-get -y install tig

View File

@ -12,10 +12,15 @@ then
elif [ "$dist" == 'ascii' ]
then
DIST='stretch'
elif [ "$dist" == 'beowulf' ]
then
DIST='buster'
else [ "$dist" == 'ceres' ]
DIST='sid'
fi
# FIXME: buster version no yet available
DIST='stretch'
OS=debian
DEST=/etc/apt/sources.list-available

13
020_neofetch_motd.sh Normal file
View File

@ -0,0 +1,13 @@
#!/bin/bash
apt-get install -y neofetch
mkdir -p /etc/update-motd.d
cat > /etc/update-motd.d/20neofetch <<EOF
#! /bin/sh
neofetch
EOF
chmod a+x /etc/update-motd.d/20neofetch
run-parts /etc/update-motd.d/