forked from thoughtbot/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
brew.sh
111 lines (99 loc) · 1.71 KB
/
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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
if ! command -v brew >/dev/null; then
fancy_echo "Installing Homebrew ..."
/bin/bash -c \
"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
fi
if brew list | grep -Fq brew-cask; then
fancy_echo "Uninstalling old Homebrew-Cask ..."
brew uninstall --force brew-cask
fi
fancy_echo "Updating Homebrew formulae ..."
brew update
brew bundle --file=- <<EOF
tap "thoughtbot/formulae"
tap "homebrew/services"
tap "homebrew/cask-drivers"
tap "homebrew/cask-versions"
# Unix
brew "git"
brew "openssl"
brew "rcm"
brew "zsh"
brew "zsh-completions"
brew "htop"
brew "ssh-copy-id"
brew "v8"
brew "wget"
# GitHub
brew "gh"
# Image manipulation
brew "imagemagick"
# Programming language prerequisites and package managers
brew "yarn"
# MAS Installer
brew "mas"
EOF
brew install pyenv
brew install youtube-dl
apps=(
1password
adobe-creative-cloud
affinity-publisher
alfred
# appcleaner
bartender
brave-browser
# carbon-copy-cloner
# clean-me
coconutbattery
daisydisk
discord
docker
figma
firefox
firefox-developer-edition
# fork
# github
google-drive
hazel
hyper
jetbrains-toolbox
# logitech-options
logitech-g-hub
# mamp
microsoft-teams
miro
# musicbrainz-picard
notion
raycast
safari-technology-preview
signal
skype
skype-for-business
slack
sonos
spotify
# sublime-text
synology-drive
teamviewer
the-unarchiver
tiptoi-manager
# transmit
# transmission
# vagrant
# vagrant-manager
# virtualbox
visual-studio-code
vlc
# webstorm
whatsapp
zoom
)
fancy_echo "Installing apps"
for pkg in "${apps[@]}"
do
brew install --cask $pkg
done
# Cleanup
fancy_echo "Cleaning up old Homebrew formulae ..."
brew cleanup