-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·55 lines (47 loc) · 1.51 KB
/
Copy pathsetup.sh
File metadata and controls
executable file
·55 lines (47 loc) · 1.51 KB
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
#!/bin/bash
#To execute, save this file and then cd to where this is saved. Run, `chmod +x ./setup.sh` and then `./setup.sh`
#Install Homebrew
echo "Installing Homebrew..."
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
#Install Cask
echo "Installing brew cask..."
brew tap homebrew/cask
#Install Programming Languages
echo "Installing Programming Languages.."
brew install --cask corretto
#Dev Related Tools
echo "Installing Dev Related Tools..."
brew install git
brew install node
echo "Attempting to install nvm..."
#This will automatically add to the shell profile after
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
if [ ! -d "/Applications/IntelliJ IDEA.app" ]; then
brew install --cask intellij-idea
fi
if [ ! -d "/Applications/Visual Studio Code.app" ]; then
brew install --cask visual-studio-code
fi
if [ ! -d "/Applications/Postman.app" ]; then
brew install --cask postman
fi
#Browsers
echo "Installing Web Browsers..."
if [ ! -d "/Applications/Firefox.app" ]; then
brew install --cask firefox
fi
if [ ! -d "/Applications/Google Chrome.app" ]; then
brew install --cask google-chrome
fi
if [ ! -d "/Applications/Microsoft Edge.app" ]; then
brew install --cask microsoft-edge
fi
#Communcation Related Apps
echo "Installing Communication Apps..."
if [ ! -d "/Applications/Slack.app" ]; then
brew install --cask slack
fi
#Other things I use daily-ish
if [ ! -d "/Applications/OBS.app" ]; then
brew install --cask obs
fi