-
Notifications
You must be signed in to change notification settings - Fork 0
/
brew.sh
58 lines (53 loc) · 851 Bytes
/
brew.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
#! /bin/sh
if ! [ -x "$(command -v brew)" ]; then
echo "Homebrew is not found on this machine, installing Homebrew"
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
echo
fi
# Install Brew packages
packages=(
awscli
gh
git
git-lfs
gnupg
hugo
n
pyenv
rbenv
tmux
unrar
vim
yarn
youtube-dl
# casks
adobe-creative-cloud
adobe-creative-cloud-cleaner-tool
alfred
appcleaner
discord
docker
duckduckgo
figma
firefox
google-chrome
jetbrains-toolbox
microsoft-edge
nasas-eyes
protonvpn
quik
slack
sourcetree
spotify
steam
stellarium
teamviewer
tor-browser
visual-studio-code
# fonts
font-fira-code
)
printf "\n=== Install packages and casks\n"
brew install ${packages[@]}
printf "\n=== Outdated packages\n"
brew outdated