feat: lots of changes, wrote own fish theme

This commit is contained in:
2020-02-22 21:32:57 +01:00
parent 493ea5d7bd
commit 39f4f893c6
11 changed files with 383 additions and 2 deletions

31
main.sh
View File

@ -1,5 +1,32 @@
#!/bin/bash
#Baseline Packages i need (Debian specific...)
USER=t31m
# we need to be root for this install script
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root"
exit 1
fi
# Ubuntu Baseline Packages
# update repos + system
apt get update && apt upgrade
# install env packages
apt install git fish fzf pyenv pyenv-virtualenv
# install docker stable, if this failes try below
curl -fsSL https://get.docker.com | sh
#curl -fsSL https://test.docker.com | sh
# install docker-compose
curl -L https://github.com/docker/compose/releases/download/1.25.4/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
usermod -aG docker t31m
# install nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.2/install.sh | bash
sudo apt-get update