-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
executable file
·310 lines (235 loc) · 8.33 KB
/
setup.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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
#/bin/bash -e
# -----------------------------------------------------------------------------
# Configuration
#
# Set configuration options in this section.
# - Home directory
# - Hostname
# - Apps to install
# - Directories to create
# -----------------------------------------------------------------------------
# Set the full path to your user's home directory
readonly HOMEDIR="/Users/jcoats"
# Set the hostname for the computer
readonly HOSTNAME="dijkstra-node-01"
# Apps to install via Homebrew Package Manager
declare -a BREW_APPS=(
bash # Bash Shell
composer # Composer PHP package manager
git # Git Client
gh # GitHub CLI
nodejs # Node
node@18 # Node 18.x
npm # Node Package Manager
php # PHP
tldr # Man Pages with practical examples
wget # CLI HTTP File Retrieval
yarn # Yarn build tool
zsh # Z Shell
)
# GUI Apps to install via Homebrew Package Manager using Cask
declare -a BREW_CASK_APPS=(
caffeine # Prevent Sleep Mode
clementine # Music Player
diffmerge # Diff GUI
docker # Docker for Mac
drata-agent # Drata agent
google-chrome # Chrome Browser
iterm2 # Terminal
libreoffice # LibreOffice
macdown # Markdown Editor
mark-text # Markdown Editor
menumeters # System Graphs in the Toolbar
musicbrainz-picard # MP3 Tagger
orbstack # Docker Desktop alternative
phpstorm # PHP IDE
rectangle # Resize windows with the keyboard
sequel-ace # MySQL GUI
slack # Chat/Communication
sublime-text # Text Editor
tower # Git GUI
transmit # File Transfers(FTP)
visual-studio-code # IDE
vlc # Video Player
zoom # Zoom
)
# Directories to create
declare -a DIRS=(
$HOMEDIR/.ssh/keys/public ## SSH Public Key Store
$HOMEDIR/.ssh/keys/private ## SSH Private Key Store
$HOMEDIR/Code ## Code Projects
$HOMEDIR/SQL ## SQL Backups
)
# -----------------------------------------------------------------------------
# End Configuration
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
# Get Started
# -----------------------------------------------------------------------------
# --- Prompt to run
# Set continue to false by default
CONTINUE=false
clear
echo "###############################################"
echo ""
echo " MacOS Configuration and Software installer"
echo ""
echo "###############################################"
echo ""
echo " - Verify you've modified the configuration to"
echo " suit your needs."
echo " - Some settings will require root. You'll be"
echo " Prompted for your password."
echo ""
echo "###############################################"
echo " Are you ready to get started? (y/n)"
read -r response
if [[ $response =~ ^([yY][eE][sS]|[yY])$ ]]; then
CONTINUE=true
echo "OK... Here we go!"
fi
if ! $CONTINUE; then
exit
fi
# --- Unix Environment
echo ""
echo "From here on we need root access. "
echo "Enter your password..."
echo ""
sudo
# Hostname
echo ""
echo "Setting hostname to $HOSTNAME..."
echo ""
sudo scutil --set ComputerName $HOSTNAME
sudo scutil --set HostName $HOSTNAME
sudo scutil --set LocalHostName $HOSTNAME
sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.smb.server NetBIOSName -string $HOSTNAME
echo "Done."
echo ""
# --- MacOS Updates
echo ""
echo "Installing MacOS updates..."
echo ""
softwareupdate --install --all
echo "Done."
echo ""
# --- GCC/Xcode Tools
echo ""
echo "Checking for Xcode..."
echo ""
if [[ ! -e `which gcc` || ! -e `which gcc-4.2` ]]; then
echo "Installing Xcode"
echo ""
xcode-select --install
fi
echo "Done."
echo ""
# --- MacOS Preferences
echo ""
echo "Setting Mac OS preferences..."
echo ""
# Expand the save and print panel by default
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true
defaults write NSGlobalDomain PMPrintingExpandedStateForPrint -bool true
defaults write NSGlobalDomain PMPrintingExpandedStateForPrint2 -bool true
# Finder
defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true
defaults write com.apple.finder ShowStatusBar -bool true
defaults write com.apple.finder CreateDesktop false
/usr/libexec/PlistBuddy -c "Set :DesktopViewSettings:IconViewSettings:showItemInfo true" ~/Library/Preferences/com.apple.finder.plist
/usr/libexec/PlistBuddy -c "Set :FK_StandardViewSettings:IconViewSettings:showItemInfo true" ~/Library/Preferences/com.apple.finder.plist
/usr/libexec/PlistBuddy -c "Set :StandardViewSettings:IconViewSettings:showItemInfo true" ~/Library/Preferences/com.apple.finder.plist
/usr/libexec/PlistBuddy -c "Set DesktopViewSettings:IconViewSettings:labelOnBottom false" ~/Library/Preferences/com.apple.finder.plist
/usr/libexec/PlistBuddy -c "Set :DesktopViewSettings:IconViewSettings:arrangeBy grid" ~/Library/Preferences/com.apple.finder.plist
/usr/libexec/PlistBuddy -c "Set :FK_StandardViewSettings:IconViewSettings:arrangeBy grid" ~/Library/Preferences/com.apple.finder.plist
/usr/libexec/PlistBuddy -c "Set :StandardViewSettings:IconViewSettings:arrangeBy grid" ~/Library/Preferences/com.apple.finder.plist
chflags nohidden ~/Library/
# Show battery percentage/time remaining
defaults write com.apple.menuextra.battery ShowPercent -string "YES"
defaults write com.apple.menuextra.battery ShowTime -string "NO"
# Automatically open a new Finder window when a volume is mounted
defaults write com.apple.frameworks.diskimages auto-open-ro-root -bool true
defaults write com.apple.frameworks.diskimages auto-open-rw-root -bool true
# Disable the warning before emptying the Trash
defaults write com.apple.finder WarnOnEmptyTrash -bool false
# Avoid creating .DS_Store files on network volumes
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true
# Require password immediately after sleep or screen saver begins
defaults write com.apple.screensaver askForPassword -int 1
defaults write com.apple.screensaver askForPasswordDelay -int 0
# Disable opening Photos on device plug in
defaults -currentHost write com.apple.ImageCapture disableHotPlug -bool true
# Login screen message
sudo defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText "Would you like to play a game?"
# Show all device icons in finder
defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true
# Default screenshot format
defaults write com.apple.screencapture type png
# Kill affected applications
for app in Finder Dock; do killall "$app"; done
killall SystemUIServer
echo "Done."
echo ""
# --- Homebrew Package Manger
echo ""
echo "Installing Homebrew..."
echo ""
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
echo "Done."
echo ""
echo ""
echo "Installing apps..."
echo ""
brew install ${BREW_APPS[@]}
brew install --cask ${BREW_CASK_APPS[@]}
brew node
brew link --overwrite node@18
brew cleanup
# --- Firewall
echo ""
echo "Enabling Firewall..."
echo ""
# Enable Filevault
sudo fdesetup enable
echo "Done."
echo ""
# --- Directories
echo ""
echo "Adding custom directories..."
echo ""
for dir in "${DIRS[@]}"
do
if [ ! -d $dir ]; then
mkdir -p $dir
fi
done
echo "Done."
echo ""
# --- Laravel installer
echo ""
echo "Setting up Laravel installer..."
echo ""
composer global require laravel/installer
echo "Done."
echo ""
# --- Update locate DB
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.locate.plist
# --- Done!
echo ""
echo ""
echo "Setup complete..."
echo ""
echo ""
echo ""
echo ""
echo "Note that some of these changes require a logout/restart to take effect."
echo "You should do that now."
echo ""
find ~/Library/Application\ Support/Dock -name "*.db" -maxdepth 1 -delete
for app in "Activity Monitor" "Address Book" "Calendar" "Contacts" "cfprefsd" \
"Dock" "Finder" "Mail" "Messages" "Safari" "SystemUIServer"; do
killall "${app}" > /dev/null 2>&1
done
# Exit root shell
exit