Files
dotfiles/install-scripts/setup.sh
2019-06-21 00:04:56 +01:00

30 lines
926 B
Bash

# start
export DEBIAN_FRONTEND=noninteractive
# apt
sudo apt-get update
sudo apt-get upgrade -y
# brew
yes '' | sh -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)"
echo 'eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)' >>~/.profile
eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)
sudo apt-get install build-essential
brew install gcc
# zsh
sudo apt install zsh -y
sudo apt-get install powerline fonts-powerline -y
# oh my zsh
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# spaceship
git clone https://github.com/denysdovhan/spaceship-prompt.git "$ZSH_CUSTOM/themes/spaceship-prompt"
ln -s "$ZSH_CUSTOM/themes/spaceship-prompt/spaceship.zsh-theme" "$ZSH_CUSTOM/themes/spaceship.zsh-theme"
sed -i 's/ZSH_THEME="robbyrussell"/ZSH_THEME="spaceship"/g' ~/.zshrc
# cleanup
sudo apt autoremove -y
export DEBIAN_FRONTEND=readline