Updated install.sh

This commit is contained in:
Dreaded_X 2014-11-07 23:14:03 +01:00
parent eb9fbdb3ef
commit 3a5fd76886

View File

@ -1,97 +1,91 @@
#!/bin/bash #!/bin/bash
# TODO: Add eclim/eclipse installer # TODO: Add eclim/eclipse installer
while true; do while true; do
read -p "Do you want to make symlinks? " yn read -p "Do you want to make symlinks? " yn
case $yn in case $yn in
[Yy]* ) if [ ! -f ~/.tmux.conf ]; then ln -s ~/.dotfiles/tmux.conf ~/.tmux.conf; fi [Yy]* ) if [ ! -f ~/.tmux.conf ]; then ln -s ~/.dotfiles/tmux.conf ~/.tmux.conf; fi
if [ ! -f ~/.zshrc ]; then ln -s ~/.dotfiles/zshrc ~/.zshrc; fi if [ ! -f ~/.zshrc ]; then ln -s ~/.dotfiles/zshrc ~/.zshrc; fi
if [ ! -f ~/.vimrc ]; then ln -s ~/.dotfiles/vimrc ~/.vimrc; fi if [ ! -f ~/.vimrc ]; then ln -s ~/.dotfiles/vimrc ~/.vimrc; fi
if [ ! -d ~/.vim ]; then ln -s ~/.dotfiles/vim ~/.vim; fi if [ ! -d ~/.vim ]; then ln -s ~/.dotfiles/vim ~/.vim; fi
if [ ! -f ~/.gitignore ]; then ln -s ~/.dotfiles/gitignore ~/.gitignore; fi if [ ! -f ~/.gitignore ]; then ln -s ~/.dotfiles/gitignore ~/.gitignore; fi
echo "Done..."; echo "Done...";
break;; break;;
[Nn]* ) break;; [Nn]* ) break;;
* ) echo "Please answer yes or no.";; * ) echo "Please answer yes or no.";;
esac esac
done done
while true; do while true; do
read -p "Do you wish to install gnome-terminal-colors-solarized? (requires dconf-cli) " yn read -p "Do you wish to install gnome-terminal-colors-solarized? (requires dconf-cli) " yn
case $yn in case $yn in
[Yy]* ) cd ..; [Yy]* ) cd ..;
git clone https://github.com/Anthony25/gnome-terminal-colors-solarized.git; git clone https://github.com/Anthony25/gnome-terminal-colors-solarized.git;
cd gnome-terminal-colors-solarized; cd gnome-terminal-colors-solarized;
./install.sh; ./install.sh;
cd ..; cd ..;
rm -rf gnome-terminal-colors-solarized; rm -rf gnome-terminal-colors-solarized;
cd .dotfiles; cd .dotfiles;
echo "Done..."; echo "Done...";
break;; break;;
[Nn]* ) break;; [Nn]* ) break;;
* ) echo "Please answer yes or no.";; * ) echo "Please answer yes or no.";;
esac esac
done done
while true; do while true; do
read -p "Do you wish to update all submodules? " yn read -p "Do you wish to update all submodules? " yn
case $yn in case $yn in
[Yy]* ) git submodule update --init --recursive; [Yy]* ) git submodule update --init --recursive;
echo "Done..."; echo "Done...";
break;; break;;
[Nn]* ) break;; [Nn]* ) break;;
* ) echo "Please answer yes or no.";; * ) echo "Please answer yes or no.";;
esac esac
done done
while true; do while true; do
read -p "Do you wish to compile YCM? " yn read -p "Do you wish to compile YCM? " yn
case $yn in case $yn in
[Yy]* ) ./vim/bundle/YouCompleteMe/install.sh; [Yy]* ) ./vim/bundle/YouCompleteMe/install.sh;
echo "Done..."; echo "Done...";
break;; break;;
[Nn]* ) break;; [Nn]* ) break;;
* ) echo "Please answer yes or no.";; * ) echo "Please answer yes or no.";;
esac esac
done done
while true; do while true; do
read -p "Do you wish to install powerline? " yn read -p "Do you wish to install source code pro with powerline? " yn
case $yn in case $yn in
[Yy]* ) pip install --user git+git://github.com/Lokaltog/powerline; [Yy]* ) ssudo curl -fsSL https://github.com/Lokaltog/powerline-fonts/raw/master/SourceCodePro/Sauce%20Code%20Powerline%20Regular.otf -o /usr/local/bin/tmux-vim-select-pane;
cd .. echo "Done...";
wget https://github.com/Lokaltog/powerline/raw/develop/font/PowerlineSymbols.otf https://github.com/Lokaltog/powerline/raw/develop/font/10-powerline-symbols.conf; break;;
mkdir -p ~/.fonts/ && mv PowerlineSymbols.otf ~/.fonts/; [Nn]* ) break;;
fc-cache -vf ~/.fonts; * ) echo "Please answer yes or no.";;
mkdir -p ~/.config/fontconfig/conf.d/ && mv 10-powerline-symbols.conf ~/.config/fontconfig/conf.d/; esac
cd .dotfiles
echo "Done...";
break;;
[Nn]* ) break;;
* ) echo "Please answer yes or no.";;
esac
done done
while true; do while true; do
read -p "Do you wish to install tmux-vim-select-pane? " yn read -p "Do you wish to install tmux-vim-select-pane? " yn
case $yn in case $yn in
[Yy]* ) sudo curl -fsSL https://raw.github.com/mislav/dotfiles/1500cd2/bin/tmux-vim-select-pane -o /usr/local/bin/tmux-vim-select-pane; [Yy]* ) sudo curl -fsSL https://raw.github.com/mislav/dotfiles/1500cd2/bin/tmux-vim-select-pane -o /usr/local/bin/tmux-vim-select-pane;
sudo chmod +x /usr/local/bin/tmux-vim-select-pane; sudo chmod +x /usr/local/bin/tmux-vim-select-pane;
echo "Done..."; echo "Done...";
break;; break;;
[Nn]* ) break;; [Nn]* ) break;;
* ) echo "Please answer yes or no.";; * ) echo "Please answer yes or no.";;
esac esac
done done
while true; do while true; do
read -p "Do you wish to install CTags? " yn read -p "Do you wish to install CTags? " yn
case $yn in case $yn in
[Yy]* ) sudo apt-get install exuberant-ctags; [Yy]* ) sudo apt-get install exuberant-ctags;
echo "Done..."; echo "Done...";
break;; break;;
[Nn]* ) break;; [Nn]* ) break;;
* ) echo "Please answer yes or no.";; * ) echo "Please answer yes or no.";;
esac esac
done done
echo "Done installing..."; echo "Done installing...";