-
Notifications
You must be signed in to change notification settings - Fork 2
/
apps.sh
65 lines (54 loc) · 1.03 KB
/
apps.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
#!/bin/bash
#
# Install Homebrew and applications
# Check out https://brew.sh for more details
# Comment (with #) what should not be installed and add the applications you want to install.
source ./scripts/utils.sh
echo_info "Installing apps..."
# Install Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew update
brew upgrade
# Install Homebrew taps
TAPS=(
homebrew/command-not-found
)
for tap in ${TAPS[@]}
do
brew tap $tap
done
# Install Homebrew formulas
FORMULAS=(
curl
git
nano
node
postgresql
ruby
tree
unar
yarn
zsh
)
for formula in ${FORMULAS[@]}
do
brew install $formula
done
# Install Homebrew casks
CASKS=(
font-jetbrains-mono
google-chrome
iina
visual-studio-code
)
for app in ${CASKS[@]}
do
brew install --cask $app
done
# Install Homebrew Cask Upgrade
# Check out https://github.com/buo/homebrew-cask-upgrade for more details
brew tap buo/cask-upgrade
brew update
brew cu
# Finish
echo_success "Finished applications installation."