-
Notifications
You must be signed in to change notification settings - Fork 0
/
osxpi.sh
executable file
·84 lines (69 loc) · 1.9 KB
/
osxpi.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/bin/bash
echo "Welcome to OSX Post Install"
read -p "Install HomeBrew? (Y/n): " -n 1 -r
if [[ $REPLY =~ ^[Yy]$ ]]
then
echo "Installing HomeBrew..."
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
echo "Running brew doctor..."
brew doctor
read -p "Install Midnight Commander? (Y/n): " -n 1 -r
if [[ $REPLY =~ ^[Yy]$ ]]
then
echo "Installing Midnight Commander..."
brew install mc
fi
read -p "Install Midnight Commander? (Y/n): " -n 1 -r
if [[ $REPLY =~ ^[Yy]$ ]]
then
echo "Installing Midnight Commander..."
brew install mc
fi
read -p "Install wget? (Y/n): " -n 1 -r
if [[ $REPLY =~ ^[Yy]$ ]]
then
echo "Installing wget..."
brew install wget
fi
read -p "Install HomeBrew Cask? (Y/n): " -n 1 -r
if [[ $REPLY =~ ^[Yy]$ ]]
then
echo "Installing HomeBrew Cask..."
brew tap phinze/cask
brew install brew-cask
read -p "Install Qicklook Plugins? (Y/n): " -n 1 -r
if [[ $REPLY =~ ^[Yy]$ ]]
then
echo "Installing Quicklook plugins..."
brew cask install qlcolorcode qlstephen qlmarkdown quicklook-json qlprettypatch quicklook-csv betterzipql webp-quicklook suspicious-package
fi
read -p "Install Google Chrome? (Y/n): " -n 1 -r
if [[ $REPLY =~ ^[Yy]$ ]]
then
echo "Installing Google Chrome..."
brew cask install google-chrome
fi
read -p "Install Adobe Creative Cloud? (Y/n): " -n 1 -r
if [[ $REPLY =~ ^[Yy]$ ]]
then
echo "Installing Adobe Creative Cloud..."
brew cask install adobe-creative-cloud
fi
read -p "Install Android Studio Bundle? (Y/n): " -n 1 -r
if [[ $REPLY =~ ^[Yy]$ ]]
then
echo "Installing Android Studio Bundle..."
brew cask install android-studio-bundle
fi
read -p "Install Transmission? (Y/n): " -n 1 -r
if [[ $REPLY =~ ^[Yy]$ ]]
then
echo "Installing Transmission..."
brew cask install transmission
fi
fi
fi
read -p "Install HomeBrew? (Y/n): " -n 1 -r
if [[ $REPLY =~ ^[Yy]$ ]]
then
fi