aboutsummaryrefslogtreecommitdiffstats
path: root/os-x_move_in.sh
diff options
context:
space:
mode:
authorjason2015-02-16 18:16:37 -0700
committerjason2015-02-16 18:16:37 -0700
commit9e64ff4a26227803ca7a862786b1db14611810e6 (patch)
tree6f9b3a36beebac1a8e3697a42cc80c09154e1559 /os-x_move_in.sh
parent5735d8977aa49c6197d48637cbbfa8c6ea056248 (diff)
downloaddotfiles-9e64ff4a26227803ca7a862786b1db14611810e6.tar.gz
dotfiles-9e64ff4a26227803ca7a862786b1db14611810e6.zip
Add osx application installation script
Diffstat (limited to 'os-x_move_in.sh')
-rwxr-xr-xos-x_move_in.sh63
1 files changed, 63 insertions, 0 deletions
diff --git a/os-x_move_in.sh b/os-x_move_in.sh
new file mode 100755
index 0000000..c6f1513
--- /dev/null
+++ b/os-x_move_in.sh
@@ -0,0 +1,63 @@
1#!/bin/bash
2
3if ! [ -e /usr/local/bin/brew ]; then
4 # Install Homebrew
5 ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
6 brew doctor
7fi
8
9if ! [ -e /usr/local/bin/brew-cask ]; then
10 # Install Homebrew Cask
11 brew tap caskroom/cask
12 brew install caskroom/cask/brew-cask
13fi
14
15if [ -d "/Applications/Little\ Snitch\ Configuration.app" ]; then
16
17 brew cask install little-snitch
18 echo "Reboot, or run this script again"
19
20else
21
22 brew cask install \
23 alfred \
24 caffeine \
25 clipmenu \
26 dash \
27 displaylink \
28 evernote \
29 gfxcardstatus \
30 google-chrome \
31 intellij-idea \
32 iterm2 \
33 lastpass \
34 nicecast \
35 mou \
36 musicbrainz-picard \
37 p4merge \
38 rescuetime \
39 steam \
40 the-unarchiver \
41 transmission \
42 transmit \
43 vagrant \
44 vagrant-manager \
45 vlc
46
47 brew install \
48 git \
49
50 brew install --HEAD mobile-shell
51
52# slack \
53
54fi
55
56if ! [ -d '/Applications/LastPass.app' ]; then
57
58 brew cask install lastpass
59 open '/opt/homebrew-cask/Caskroom/lastpass/latest/LastPass Installer.app'
60 read -p "Press [Enter] key to continue..."
61fi
62
63open "/opt/homebrew-cask/Caskroom/little-snitch/3.5.1/Little Snitch Installer.app"