-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbrew.sh
executable file
·51 lines (41 loc) · 1.13 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
#!/usr/bin/env bash
# Install command-line tools using Homebrew.
# Ask for the administrator password upfront.
sudo -v
# Keep-alive: update existing `sudo` time stamp until the script has finished.
while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null &
# Make sure we’re using the latest Homebrew.
brew update
# Extra taps
brew tap
brew tap homebrew/core
brew tap homebrew/services
brew install coreutils
brew install findutils
brew install moreutils
brew install fontconfig
brew install git
brew install git-extras
brew install python
brew install speedtest-cli
brew install ssh-copy-id
brew install zsh
brew install fnm
# Casks
brew install --cask 1password
brew install --cask alfred
brew install --cask bartender
brew install --cask bruno
brew install --cask daisydisk
brew install --cask discord
brew install --cask github
brew install --cask iterm2
brew install --cask mounty
brew install --cask privadovpn
brew install --cask rectangle
brew install --cask slack
brew install --cask spotify
brew install --cask visual-studio-code
brew install --cask whatsapp
# Remove outdated versions from the cellar.
brew cleanup