aboutsummaryrefslogtreecommitdiffstats
path: root/.brew
diff options
context:
space:
mode:
authorMathias Bynens <mathias@qiwi.be>2013-05-02 21:33:19 +0200
committerMathias Bynens <mathias@qiwi.be>2013-05-02 21:33:19 +0200
commitd9ada0eefac30a1a6c27e3825f1e05b46753ae1f (patch)
treeafc75773e9e54b888420dbde55d3a1df4c5905b7 /.brew
parentcbcc4b15834df90fdd8cf936720a74a396f4f2e8 (diff)
downloaddotfiles-d9ada0eefac30a1a6c27e3825f1e05b46753ae1f.tar.gz
dotfiles-d9ada0eefac30a1a6c27e3825f1e05b46753ae1f.tar.bz2
dotfiles-d9ada0eefac30a1a6c27e3825f1e05b46753ae1f.zip
.brew: Install native apps through homebrew-cask
Closes #200.
Diffstat (limited to '.brew')
-rwxr-xr-x.brew27
1 files changed, 26 insertions, 1 deletions
diff --git a/.brew b/.brew
index b4e0e6d..91f65d8 100755
--- a/.brew
+++ b/.brew
@@ -32,7 +32,7 @@ brew install php54
#brew install homebrew/dupes/vim
#brew install homebrew/dupes/screen
-# Install everything else
+# Install other useful binaries
brew install ack
#brew install exiv2
brew install git
@@ -49,5 +49,30 @@ brew install zopfli
brew tap homebrew/versions
brew install lua52
+# Install native apps
+brew tap phinze/homebrew-cask
+brew install brew-cask
+
+function installcask() {
+ if brew cask info "${@}" | grep "Not installed" > /dev/null; then
+ brew cask install "${@}"
+ else
+ echo "${@} is already installed."
+ fi
+}
+
+installcask google-chrome
+installcask google-chrome-canary
+installcask iterm2
+installcask macvim
+installcask miro-video-converter
+installcask sublime-text
+installcask the-unarchiver
+installcask tor-browser
+installcask transmission
+installcask ukelele
+installcask virtualbox
+installcask vlc
+
# Remove outdated versions from the cellar
brew cleanup