소스 검색

Update install script to include airline glyphs

Andrew Swistak 12 년 전
부모
커밋
386f499201
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      scripts/install_dotfiles.sh

+ 2 - 2
scripts/install_dotfiles.sh

@@ -44,9 +44,9 @@ ln -fsn "$DIR"/vim/pathogen/autoload "$DIR"/vim/
 mkdir -p "$DIR"/vim/tmp/{backup,swap,undo}
 
 #Very specific to Arch
-read -p "Install boost [y/N] " -n 1 -r
+read -p "Install boost and airline glyphs [y/N] " -n 1 -r
 if [[ $REPLY =~ ^[Yy]$ ]]; then
-  yaourt -S boost
+  yaourt -S boost powerline-fonts-git
 fi
 echo ""