diff --git a/deps.zsh b/deps.zsh new file mode 100755 index 0000000..c751eed --- /dev/null +++ b/deps.zsh @@ -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