-
Notifications
You must be signed in to change notification settings - Fork 636
/
brew.sh
executable file
·181 lines (157 loc) · 5.03 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
#!/usr/bin/env zsh
# Install Homebrew if it isn't already installed
if ! command -v brew &>/dev/null; then
echo "Homebrew not installed. Installing Homebrew."
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Attempt to set up Homebrew PATH automatically for this session
if [ -x "/opt/homebrew/bin/brew" ]; then
# For Apple Silicon Macs
echo "Configuring Homebrew in PATH for Apple Silicon Mac..."
export PATH="/opt/homebrew/bin:$PATH"
fi
else
echo "Homebrew is already installed."
fi
# Verify brew is now accessible
if ! command -v brew &>/dev/null; then
echo "Failed to configure Homebrew in PATH. Please add Homebrew to your PATH manually."
exit 1
fi
# Update Homebrew and Upgrade any already-installed formulae
brew update
brew upgrade
brew upgrade --cask
brew cleanup
# Define an array of packages to install using Homebrew.
packages=(
"python"
"tcl-tk"
"python-tk"
"bash"
"zsh"
"git"
"tree"
"pylint"
"black"
"node"
)
# Loop over the array to install each application.
for package in "${packages[@]}"; do
if brew list --formula | grep -q "^$package\$"; then
echo "$package is already installed. Skipping..."
else
echo "Installing $package..."
brew install "$package"
fi
done
# Get the path to Homebrew's zsh
BREW_ZSH="$(brew --prefix)/bin/zsh"
# Check if Homebrew's zsh is already the default shell
if [ "$SHELL" != "$BREW_ZSH" ]; then
echo "Changing default shell to Homebrew zsh"
# Check if Homebrew's zsh is already in allowed shells
if ! grep -Fxq "$BREW_ZSH" /etc/shells; then
echo "Adding Homebrew zsh to allowed shells"
echo "$BREW_ZSH" | sudo tee -a /etc/shells >/dev/null
fi
# Set the Homebrew zsh as default shell
chsh -s "$BREW_ZSH"
echo "Default shell changed to Homebrew zsh."
else
echo "Homebrew zsh is already the default shell. Skipping configuration."
fi
# Git config name
current_name=$($(brew --prefix)/bin/git config --global --get user.name)
if [ -z "$current_name" ]; then
echo "Please enter your FULL NAME for Git configuration:"
read git_user_name
$(brew --prefix)/bin/git config --global user.name "$git_user_name"
echo "Git user.name has been set to $git_user_name"
else
echo "Git user.name is already set to '$current_name'. Skipping configuration."
fi
# Git config email
current_email=$($(brew --prefix)/bin/git config --global --get user.email)
if [ -z "$current_email" ]; then
echo "Please enter your EMAIL for Git configuration:"
read git_user_email
$(brew --prefix)/bin/git config --global user.email "$git_user_email"
echo "Git user.email has been set to $git_user_email"
else
echo "Git user.email is already set to '$current_email'. Skipping configuration."
fi
# Create the tutorial virtual environment I use frequently
$(brew --prefix)/bin/python3 -m venv "${HOME}/tutorial"
# Install Prettier, which I use in both VS Code and Sublime Text
$(brew --prefix)/bin/npm install --global prettier
# Define an array of applications to install using Homebrew Cask.
apps=(
"google-chrome"
"firefox"
"brave-browser"
"sublime-text"
"visual-studio-code"
"spotify"
"discord"
"google-drive"
"gimp"
"vlc"
"rectangle"
"postman"
"keyboardcleantool"
)
# Loop over the array to install each application.
for app in "${apps[@]}"; do
if brew list --cask | grep -q "^$app\$"; then
echo "$app is already installed. Skipping..."
else
echo "Installing $app..."
brew install --cask "$app"
fi
done
# Install fonts
# Tap the Homebrew font cask repository if not already tapped
brew tap | grep -q "^homebrew/cask-fonts$" || brew tap homebrew/cask-fonts
fonts=(
"font-source-code-pro"
"font-lato"
"font-montserrat"
"font-nunito"
"font-open-sans"
"font-oswald"
"font-poppins"
"font-raleway"
"font-roboto"
)
for font in "${fonts[@]}"; do
# Check if the font is already installed
if brew list --cask | grep -q "^$font\$"; then
echo "$font is already installed. Skipping..."
else
echo "Installing $font..."
brew install --cask "$font"
fi
done
# Once fonts are installed, import your Terminal Profile
echo "Import your terminal settings..."
echo "Terminal -> Settings -> Profiles -> Import..."
echo "Import from ${HOME}/dotfiles/settings/Pro.terminal"
echo "Press enter to continue..."
read
# Update and clean up again for safe measure
brew update
brew upgrade
brew upgrade --cask
brew cleanup
echo "Sign in to Google Chrome. Press enter to continue..."
read
echo "Connect Google Account (System Settings -> Internet Accounts). Press enter to continue..."
read
echo "Sign in to Spotify. Press enter to continue..."
read
echo "Sign in to Discord. Press enter to continue..."
read
echo "Open Rectangle and give it necessary permissions. Press enter to continue..."
read
echo "Import your Rectangle settings located in ~/dotfiles/settings/RectangleConfig.json. Press enter to continue..."
read