seperated dependcy installation for parallel execution
This commit is contained in:
parent
8b5110cfa8
commit
857ba8da73
1 changed files with 20 additions and 0 deletions
20
deps.zsh
Executable file
20
deps.zsh
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue