Skip to content

Commit

Permalink
More Brewfile goodies!
Browse files Browse the repository at this point in the history
  • Loading branch information
mislav committed Aug 17, 2016
1 parent 14df4bb commit 0c56722
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Brewfile
Expand Up @@ -19,6 +19,7 @@ brew 'git'
brew 'hub'
brew 'youtube-dl'
brew 'ffmpeg', args: %w[--with-libvpx --with-libvorbis]
brew 'heroku-toolbelt'

tap 'caskroom/cask'
brew 'caskroom/cask/brew-cask'
Expand All @@ -35,3 +36,15 @@ cask 'caffeine'
cask 'utorrent'
cask 'vlc'
cask 'cathode'
cask 'virtualbox'
cask 'virtualbox-extension-pack'
cask 'vagrant'
cask 'imageoptim'
cask 'imagealpha'
cask 'atom'

mas 'iA Writer', id: 775737590
mas 'Tweetbot', id: 557168941
mas 'Capo', id: 696977615
mas 'Pixelmator', id: 407963104
mas 'GIF Brewery 3', id: 1081413713
11 changes: 11 additions & 0 deletions install
Expand Up @@ -30,6 +30,17 @@ done < .external

brew bundle --global

grep ^cask ~/.Brewfile | awk '{print $2}' | sed "s/[\"\"']//g" | while read cask; do
case "$cask" in
iterm2 ) app="iterm" ;;
virtualbox-extension-pack | vagrant ) continue ;;
* ) app="${cask//-/ }" ;;
esac
if ! ls /Applications ~/Applications | grep -qi "$app"; then
echo "warning: \`$cask' not found in /Applications" >&2
fi
done

if ! [ -e ~/.vim ]; then
git clone https://github.com/mislav/vimfiles ~/.vim
cd ~/.vim
Expand Down

0 comments on commit 0c56722

Please sign in to comment.