Update install script to also be able to install gnome-terminal-colors-solarized
This commit is contained in:
parent
203f1e7b77
commit
4e4ba098d6
19
install.sh
19
install.sh
|
@ -10,10 +10,21 @@ 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
|
||||||
|
|
||||||
#ln -s ~/.dotfiles/zshrc ~/.zshrc
|
#install gnome-terminal-colors-solarized
|
||||||
#ln -s ~/.dotfiles/vimrc ~/.vimrc
|
while true; do
|
||||||
#ln -s ~/.dotfiles/vim ~/.vim
|
read -p "Do you wish to install gnome-terminal-colors-solarized? " yn
|
||||||
#ln -s ~/.dotfiles/gitignore ~/.gitignore
|
case $yn in
|
||||||
|
[Yy]* ) sudo apt-get install dconf-cli;
|
||||||
|
git clone https://github.com/Anthony25/gnome-terminal-colors-solarized.git
|
||||||
|
cd gnome-terminal-colors-solarized;
|
||||||
|
./install.sh;
|
||||||
|
cd ..;
|
||||||
|
rm -rf gnome-terminal-colors-solarized;
|
||||||
|
break;;
|
||||||
|
[Nn]* ) exit;;
|
||||||
|
* ) echo "Please answer yes or no.";;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
if [ ! -f /usr/local/bin/tmux-vim-select-pane ]; then
|
if [ ! -f /usr/local/bin/tmux-vim-select-pane ]; then
|
||||||
curl -fsSL https://raw.github.com/mislav/dotfiles/1500cd2/bin/tmux-vim-select-pane -o /usr/local/bin/tmux-vim-select-pane;
|
curl -fsSL https://raw.github.com/mislav/dotfiles/1500cd2/bin/tmux-vim-select-pane -o /usr/local/bin/tmux-vim-select-pane;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user