-
Notifications
You must be signed in to change notification settings - Fork 10
/
brew.sh
95 lines (83 loc) · 2.99 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
# Install Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
eval "$(homebrew/bin/brew shellenv)"
brew update
brew upgrade
# Install packages
brew install dockutil
brew install htop
brew install iftop
brew install openssl
brew install tig
brew install composer
brew install nmap
brew install git
brew install subversion
brew install python3
brew install thefuck
brew install wget
brew install zsh
brew install zsh-completions
brew install webkit2png
brew install sqlmap
brew install aircrack-ng
brew install unrar
brew install wifi-password
brew install mysql
brew install potrace
brew install imagemagick
brew install pkg-config
brew install autoconf
brew install pkg-config
pecl install imagick
brew install azure-cli
brew install helm
helm repo add stable https://charts.helm.sh/stable
brew install gnupg2
brew install pinentry-mac
brew install gh
# Wait a bit before moving on...
sleep 1
# ...and then.
echo "Success! Basic brew packages are installed."
# setup GPG for GIT
mkdir ~/.gnupg
echo "pinentry-program /usr/local/bin/pinentry-mac" >> ~/.gnupg/gpg-agent.conf
gpgconf --kill gpg-agent
# Cask
brew tap homebrew/cask
# Install cask packages
brew install --cask --appdir="/Applications" raycast
brew install --cask --appdir="/Applications" google-chrome
brew install --cask --appdir="/Applications" slack
brew install --cask --appdir="/Applications" spotify
brew install --cask --appdir="/Applications" sublime-text
brew install --cask --appdir="/Applications" tableplus
brew install --cask --appdir="/Applications" postman
brew install --cask --appdir="/Applications" forklift
brew install --cask --appdir="/Applications" spectacle
brew install --cask --appdir="/Applications" appcleaner
brew install --cask --appdir="/Applications" skype
brew install --cask --appdir="/Applications" the-unarchiver
brew install --cask --appdir="/Applications" hyper
brew install --cask --appdir="/Applications" hiddenbar
brew install --cask --appdir="/Applications" lens
brew install --cask --appdir="/Applications" tinkerwell
brew install --cask --appdir="/Applications" orbstack
brew install --cask --appdir="/Applications" 1password
brew install --cask --appdir="/Applications" rocket-chat
brew install --cask --appdir="/Applications" whatsapp
brew install --cask --appdir="/Applications" monitorcontrol
brew install --cask --appdir="/Applications" jetbrains-toolbox
brew install --cask --appdir="/Applications" telegram
brew install --cask --appdir="/Applications" appcleaner
brew install --cask --appdir="/Applications" iina
brew install --cask --appdir="/Applications" optimage
brew install --cask --appdir="/Applications" notion
brew install --cask --appdir="/Applications" numi
# Quick Look Plugins (https://github.com/sindresorhus/quick-look-plugins)
brew install --cask qlcolorcode qlstephen qlmarkdown quicklook-json qlprettypatch quicklook-csv qlimagesize webpquicklook qlvideo
# Wait a bit before moving on...
sleep 1
# ...and then.
echo "Success! Brew additional applications are installed."