seperated dependcy installation for parallel execution

This commit is contained in:
Stefen Auris 2017-09-27 13:36:57 -04:00
parent 8b5110cfa8
commit 857ba8da73

20
deps.zsh Executable file
View file

@ -0,0 +1,20 @@
#!/bin/sh
#These are the base dependencies for any install
echo "installing base dependencies"
sudo apt-get install tmux \
zsh \
vim \
powerline\
htop \
mc\
curl
#check if on a ssh connection, if you are, emacs doesnt need X
echo "installing emacs, based on X support"
if [[ -n "$SSH_CLIENT" ]]
then
sudo apt-get install emacs24-nox
else
sudo apt-get install emacs
fi