Updated install.sh

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

View File

@ -55,15 +55,9 @@ while true; do
done
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
[Yy]* ) pip install --user git+git://github.com/Lokaltog/powerline;
cd ..
wget https://github.com/Lokaltog/powerline/raw/develop/font/PowerlineSymbols.otf https://github.com/Lokaltog/powerline/raw/develop/font/10-powerline-symbols.conf;
mkdir -p ~/.fonts/ && mv PowerlineSymbols.otf ~/.fonts/;
fc-cache -vf ~/.fonts;
mkdir -p ~/.config/fontconfig/conf.d/ && mv 10-powerline-symbols.conf ~/.config/fontconfig/conf.d/;
cd .dotfiles
[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;
echo "Done...";
break;;
[Nn]* ) break;;