-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1-install-cli-brew.sh
More file actions
executable file
·70 lines (55 loc) · 1.57 KB
/
1-install-cli-brew.sh
File metadata and controls
executable file
·70 lines (55 loc) · 1.57 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/bin/zsh
echo "STOP: Open Mac AppStore and update OS..."
read Y
echo Installing HomeBrew...
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
sudo softwareupdate --install-rosetta
echo Installing CLI apps...
brew install git
git config --global user.name "Mike Chambers"
git config --global user.email mike@mikegchambers.com
echo Installing AWS CLI...
brew install awscli
echo Installing Mas...
brew install mas
echo Installing Cask tap...
brew tap homebrew/cask
echo Installing GUI apps...
echo Browsers...
brew install firefox
brew install google-chrome
echo Utils...
brew install 1password
brew install bartender
brew install tyke
brew install icons8
brew install grandperspective
brew install loopback
brew install audio-hijack
brew install openvpn-connect
# brew cask install handbrake
brew install postman
brew install ultimaker-cura
echo Elgato...
brew install elgato-control-center
brew install elgato-camera-hub
echo Comms...
# brew install zoomus
brew install amazon-chime
echo Development...
brew install processing
brew install arduino
brew install visual-studio-code
brew install terraform
brew install node
echo Drivers...
brew install homebrew/cask-drivers/logitech-options
brew install homebrew/cask-drivers/logitech-camera-settings
brew install homebrew/cask-drivers/wacom-tablet
echo Granted...
brew tap common-fate/granted
brew install granted
echo Also install the Granted plugin for Firefox container tabs!
echo Done!