commit 036f833bf6507dd6c4a00eaa4723befc8e75460b
parent cc7803570025a26914ad2d6a65f14fbff72d7deb
Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date: Tue, 6 Oct 2015 08:06:46 +0200
Prompt user for cask install, increase spacemacs font size
Diffstat:
3 files changed, 10 insertions(+), 7 deletions(-)
diff --git a/.spacemacs b/.spacemacs
@@ -86,7 +86,7 @@ before layers configuration."
; :width normal
; :powerline-scale 1.1)
dotspacemacs-default-font '("PragmataPro"
- :size 12
+ :size 14
:weight normal
:width normal
:powerline-scale 1.1)
diff --git a/.zshrc b/.zshrc
@@ -74,6 +74,7 @@ alias gcagp='git commit -a -v && git push'
alias clear='clear && tmux clear-history'
alias ct='ctags -R .'
alias findgrep='find . | grep -i '
+alias lsgrep='ls -la | grep -in '
alias zshreload="source ~/.zshrc"
diff --git a/osx-install.sh b/osx-install.sh
@@ -82,9 +82,11 @@ casks=("adobe-reader"\
"vlc"\
"xquartz" )
-for cask in "${casks[@]}"; do
- echo $cask
- brew cask install $cask
-done
-
-
+read -p "Do you want to install brew casks? [y/n]" -n 1 -r
+echo
+if [[ $REPLY =~ ^[Yy]$ ]]; then
+ for cask in "${casks[@]}"; do
+ echo $cask
+ brew cask install $cask
+ done
+fi