-
Notifications
You must be signed in to change notification settings - Fork 8
/
macos
executable file
·631 lines (481 loc) · 22 KB
/
macos
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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
#!/usr/bin/env zsh
# shellcheck shell=bash
# REF:
# - https://github.com/akinsho/dotfiles/commit/f7e40d7bf018488d49e5f83f3ceef9e4b0d41d48
# - https://github.com/FelixKratz/dotfiles/blob/master/.install.sh
# - https://github.com/caarlos0/dotfiles.fish/blob/main/macos/set-defaults.sh
# TODO:
# - https://www.youtube.com/watch?v=psPgSN1bPLY&t=349s
source "$HOME/.dotfiles/config/zsh/lib/helpers.zsh"
# Close any open System Preferences panes, to prevent them from overriding
# settings we’re about to change
osascript -e 'tell application "System Preferences" to quit'
BACKUP_TIMESTAMP=$(date '+%Y%m%d_%H%M%S')
BACKUP_FILE="${HOME}/Desktop/defaults-backup.${BACKUP_TIMESTAMP}.plist"
log "backing up current macOS X defaults to: ${BACKUP_FILE}"
defaults read >"$BACKUP_FILE"
set -x
# ------------------
# great references:
# ------------------
# https://github.com/herrbischoff/awesome-osx-command-line
# https://mths.be/macos
# https://juanitofatas.com/mac (catalina specific things)
# https://github.com/blackrobot/dotfiles/blob/master/setup/setup-macos.sh
# https://www.cultofmac.com/646404/secret-mac-settings/
# ------------------
COMPUTER_NAME := 'megabook'
COMPUTER_NAME="megabook"
if [[ "$(arch)" == "arm64" ]]; then
COMPUTER_NAME := 'megabookpro'
COMPUTER_NAME="megabookpro"
fi
# Close any open System Preferences panes, to prevent them from overriding
# settings we’re about to change
osascript -e 'tell application "System Preferences" to quit'
# handy folders we always use/seem to need
if [ ! -d "$HOME/code" ]; then
mkdir -p "$HOME/code"
fi
if [ ! -d "$HOME/tmp" ]; then
mkdir -p "$HOME/tmp"
fi
# Keep-alive: update existing `sudo` time stamp until `osx/osx.sh` has finished
while true; do
sudo -n true
sleep 60
kill -0 "$$" || exit
done 2>/dev/null &
# Set standby delay to 24 hours (default is 1 hour)
# sudo pmset -a standbydelay 86400
# Resolves issue of sleeping draining battery
# REF: https://discussions.apple.com/thread/8368663?answerId=33336883022#33336883022
sudo pmset -b tcpkeepalive 0
# Disable the sound effects on boot
sudo nvram SystemAudioVolume=" "
defaults write NSGlobalDomain com.apple.sound.beep.flash -int 0
defaults write NSGlobalDomain com.apple.sound.uiaudio.enabled -int 0
# disable the power chime when plugging in charger
defaults write com.apple.PowerChime ChimeOnAllHardware -bool false; killall PowerChime
sudo nvram StartupMute=%01
# Allow apps downloaded from "Anywhere"
sudo spctl --master-disable
# Disable the “Are you sure you want to open this application?” dialog
defaults write com.apple.LaunchServices LSQuarantine -bool false
sudo scutil --set ComputerName $COMPUTER_NAME
sudo scutil --set HostName $COMPUTER_NAME
sudo scutil --set LocalHostName $COMPUTER_NAME
sudo defaults write \
/Library/Preferences/SystemConfiguration/com.apple.smb.server \
NetBIOSName -string $COMPUTER_NAME
# Create symlink for iCloud Drive to ~
ln -sfv ~/Library/Mobile\ Documents/com\~apple\~CloudDocs/ ~/iCloud
# # Save screenshots to the desktop
# if [ ! -d "$HOME/Desktop/screenshots" ]; then
# mkdir ~/Desktop/screenshots
# fi
defaults write com.apple.screencapture location -string "" # ${HOME}/screenshots" # or "${HOME}/iCloud/Screenshots"
defaults write com.apple.screencapture type -string "" # (other options: BMP, GIF, JPG, PDF, TIFF)
defaults write com.apple.screencapture name ""
defaults write com.apple.screencapture type jpg
# don't include the datetime stamp
# defaults write com.apple.screencapture "include-date" -1
# Disable shadow in screenshots"
defaults write com.apple.screencapture disable-shadow -bool true
# no .DS_Store on network
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true
# Increase sound quality for Bluetooth headphones/headsets
# defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Min (editable)" -int 40
sudo defaults write bluetoothaudiod "Enable AptX codec" -bool true
sudo defaults write bluetoothaudiod "Enable AAC codec" -bool true
# Trackpad: enable tap to click for this user and for the login screen (1 enabled, 0 disabled)
# defaults write com.apple.AppleMultitouchTrackpad Clicking -int 0
# defaults -currentHost write NSGlobalDomain com.apple.mouse.tapBehavior -int 0
# defaults write NSGlobalDomain com.apple.mouse.tapBehavior -int 0
# Mouse:
# disables mouse tracking speed; HT: @evantravers ->
# REF: https://etherealmind.com/mouse-tracking-speed-on-macos-fixing/
# defaults write GlobalPreferences com.apple.mouse.scaling -1
# Enable tap to click
# Trackpad: enable tap to click for this user and for the login screen
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking -bool true
defaults -currentHost write NSGlobalDomain com.apple.mouse.tapBehavior -int 1
defaults write NSGlobalDomain com.apple.mouse.tapBehavior -int 1
defaults write NSGlobalDomain com.apple.trackpad.forceClick -int 1
defaults write NSGlobalDomain com.apple.trackpad.scaling -int 3
# Trackpad: map bottom right corner to right-click
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadCornerSecondaryClick -int 2
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadRightClick -int 1
defaults -currentHost write NSGlobalDomain com.apple.trackpad.trackpadCornerClickBehavior -int 1
defaults -currentHost write NSGlobalDomain com.apple.trackpad.enableSecondaryClick -int 1
# Disable "Natural" scroll
defaults write NSGlobalDomain com.apple.swipescrolldirection -bool false
# Enable 3-finger drag. (Moving with 3 fingers in any window "chrome" moves the window.)
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerDrag -int 1
defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerDrag -int 1
# Trackpad: use three finger tap to Look up & data detectors
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerTapGesture -int 2
defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerTapGesture -int 2
# Open App from 3rd-party developer
defaults write /Library/Preferences/com.apple.security GKAutoRearm -bool NO
# dock size & autohidden dock
defaults write com.apple.Dock showhidden -bool true
defaults write com.apple.dock tilesize -int 48
defaults write com.apple.dock autohide -bool true
defaults write com.apple.dock autohide-delay -float 0
defaults write com.apple.dock autohide-time-modifier -int 0
# Don’t automatically rearrange Spaces based on most recent use
defaults write com.apple.dock mru-spaces -bool false
# autohide menubar (true autohide, false -- don't autohide)
defaults write NSGlobalDomain _HIHideMenuBar -bool false
# mojave sub-pixel font smoothing
# ref: https://www.reddit.com/r/MacOS/comments/9ijy88/font_antialiasing_on_mojave/e6mbs49/
# ref: https://forums.macrumors.com/threads/the-subpixel-aa-debacle-and-font-rendering.2184484/
defaults -currentHost write -globalDomain AppleFontSmoothing -int 2
defaults write -g CGFontRenderingFontSmoothingDisabled -bool false
# ^-- or, `NO`, instead of `false`
# 14 days on ical
defaults write com.apple.iCal n\ days\ of\ week 14
# Enable full keyboard access for all controls
# (e.g. enable Tab in modal dialogs)
defaults write NSGlobalDomain AppleKeyboardUIMode -int 3
defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false
# "Set a blazingly fast keyboard repeat rate"
defaults write NSGlobalDomain KeyRepeat -float 1.0
# "Set a shorter Delay until key repeat"
defaults write NSGlobalDomain InitialKeyRepeat -int 12
# Disable automatic capitalization as it’s annoying when typing code
defaults write NSGlobalDomain NSAutomaticCapitalizationEnabled -bool false
# Disable smart dashes as they’re annoying when typing code
defaults write NSGlobalDomain NSAutomaticDashSubstitutionEnabled -bool false
# Disable automatic period substitution as it’s annoying when typing code
defaults write NSGlobalDomain NSAutomaticPeriodSubstitutionEnabled -bool false
# Disable smart quotes as they’re annoying when typing code
defaults write NSGlobalDomain NSAutomaticQuoteSubstitutionEnabled -bool false
# Disable auto-correct
defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false
defaults write NSGlobalDomain WebAutomaticSpellingCorrectionEnabled -bool false
# scrollbars on always!
defaults write NSGlobalDomain AppleShowScrollBars -string "Always"
# expand save/print dialogs by default
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode2 -bool true
defaults write NSGlobalDomain PMPrintingExpandedStateForPrint -bool true
defaults write NSGlobalDomain PMPrintingExpandedStateForPrint2 -bool true
# Save to disk (not to iCloud) by default
defaults write NSGlobalDomain NSDocumentSaveNewDocumentsToCloud -bool false
# Reveal IP address, hostname, OS version, etc. when clicking the clock
# in the login window
sudo defaults write /Library/Preferences/com.apple.loginwindow AdminHostInfo HostName
# Disable Resume system-wide
defaults write com.apple.systempreferences NSQuitAlwaysKeepsWindows -bool false
defaults write com.apple.systempreferences NSQuitAlwaysKeepsWindows -int 0
# Automatically quit printer app once the print jobs complete
defaults write com.apple.print.PrintingPrefs "Quit When Finished" -bool true
# remove all default icons on the dock (for when first setting up)
defaults delete com.apple.dock persistent-apps
defaults delete com.apple.dock persistent-others
# HiDPI things? needed for big sur?
# defaults write /Library/Preferences/com.apple.windowserver.plist DisplayResolutionEnabled -bool true
##
# Finder
##
defaults write com.apple.finder NewWindowTarget -string "PfLo"
defaults write com.apple.finder NewWindowTargetPath -string "file://$HOME/Downloads/"
# -- default to using ForkLift 3 for all the Finder handlers
defaults write -g NSFileViewer -string com.binarynights.ForkLift-3
defaults write com.apple.LaunchServices/com.apple.launchservices.secure LSHandlers -array-add '{LSHandlerContentType="public.folder";LSHandlerRoleAll="com.binarynights.ForkLift-3";}'
# show all hidden files and folders (or is it `true`?)
defaults write com.apple.Finder AppleShowAllFiles -boolean true
defaults write com.apple.finder AppleShowAllExtensions -boolean true
# Finder: show status bar
defaults write com.apple.finder ShowStatusBar -bool true
# Finder: show path bar
defaults write com.apple.finder ShowPathbar -bool true
# Display full POSIX path as Finder window title
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true
# Keep folders on top when sorting by name
defaults write com.apple.finder _FXSortFoldersFirst -bool true
# When performing a search, search the current folder by default
defaults write com.apple.finder FXDefaultSearchScope -string "SCcf"
# Disable the warning when changing a file extension
defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false
# Enable spring loading for directories
defaults write NSGlobalDomain com.apple.springing.enabled -bool true
# Remove the spring loading delay for directories
defaults write NSGlobalDomain com.apple.springing.delay -float 0
# Avoid creating .DS_Store files on network or USB volumes
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true
defaults write com.apple.desktopservices DSDontWriteUSBStores -bool true
# Disable disk image verification
defaults write com.apple.frameworks.diskimages skip-verify -bool true
defaults write com.apple.frameworks.diskimages skip-verify-locked -bool true
defaults write com.apple.frameworks.diskimages skip-verify-remote -bool true
# Enable AirDrop over Ethernet and on unsupported Macs running Lion
defaults write com.apple.NetworkBrowser BrowseAllInterfaces -bool true
# Show the ~/Library folder
chflags nohidden ~/Library
# Show the /Volumes folder
sudo chflags nohidden /Volumes
##
# Safari
##
# Privacy: don’t send search queries to Apple
defaults write com.apple.Safari UniversalSearchEnabled -bool false
defaults write com.apple.Safari SuppressSearchSuggestions -bool true
# Press Tab to highlight each item on a web page
defaults write com.apple.Safari WebKitTabToLinksPreferenceKey -bool true
defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2TabsToLinks -bool true
# Show the full URL in the address bar (note: this still hides the scheme)
defaults write com.apple.Safari ShowFullURLInSmartSearchField -bool true
# Set Safari’s home page to `about:blank` for faster loading
# defaults write com.apple.Safari HomePage -string "about:blank"
# Prevent Safari from opening ‘safe’ files automatically after downloading
defaults write com.apple.Safari AutoOpenSafeDownloads -bool false
# Hide Safari’s bookmarks bar by default
defaults write com.apple.Safari ShowFavoritesBar -bool false
# Hide Safari’s sidebar in Top Sites
defaults write com.apple.Safari ShowSidebarInTopSites -bool false
# Enable the Develop menu and the Web Inspector in Safari
defaults write com.apple.Safari IncludeDevelopMenu -bool true
defaults write com.apple.Safari WebKitDeveloperExtrasEnabledPreferenceKey -bool true
defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2DeveloperExtrasEnabled -bool true
# Add a context menu item for showing the Web Inspector in web views
defaults write NSGlobalDomain WebKitDeveloperExtras -bool true
# Enable continuous spellchecking
defaults write com.apple.Safari WebContinuousSpellCheckingEnabled -bool true
# Warn about fraudulent websites
defaults write com.apple.Safari WarnAboutFraudulentWebsites -bool true
# Disable Java
defaults write com.apple.Safari WebKitJavaEnabled -bool false
defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2JavaEnabled -bool false
defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2JavaEnabledForLocalFiles -bool false
# Block pop-up windows
defaults write com.apple.Safari WebKitJavaScriptCanOpenWindowsAutomatically -bool false
defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2JavaScriptCanOpenWindowsAutomatically -bool false
# Update extensions automatically
defaults write com.apple.Safari InstallExtensionUpdatesAutomatically -bool true
##
# Terminal & iTerm
##
# Only use UTF-8 in Terminal.app
defaults write com.apple.terminal StringEncodings -array 4
# Enable Secure Keyboard Entry in Terminal.app
# See: https://security.stackexchange.com/a/47786/8918
defaults write com.apple.terminal SecureKeyboardEntry -bool true
# Disable the annoying line marks
defaults write com.apple.Terminal ShowLineMarks -int 0
# Don’t display the annoying prompt when quitting iTerm
defaults write com.googlecode.iterm2 PromptOnQuit -bool false
##
# Time Machine
##
# Prevent Time Machine from prompting to use new hard drives as backup volume
defaults write com.apple.TimeMachine DoNotOfferNewDisksForBackup -bool true
# Disable local Time Machine backups
# NOTE: Apple removed the ability to set `disablelocal`. Thanks Apple.
# hash tmutil &> /dev/null && sudo tmutil disablelocal
##
# Activity Monitor
##
# Show the main window when launching Activity Monitor
defaults write com.apple.ActivityMonitor OpenMainWindow -bool true
# Visualize CPU usage in the Activity Monitor Dock icon
defaults write com.apple.ActivityMonitor IconType -int 5
# Show all processes in Activity Monitor
defaults write com.apple.ActivityMonitor ShowCategory -int 0
# Sort Activity Monitor results by CPU usage
defaults write com.apple.ActivityMonitor SortColumn -string "CPUUsage"
defaults write com.apple.ActivityMonitor SortDirection -int 0
##
# Text Edit
##
# Use plain text mode for new TextEdit documents
defaults write com.apple.TextEdit RichText -int 0
# Open and save files as UTF-8 in TextEdit
defaults write com.apple.TextEdit PlainTextEncoding -int 4
defaults write com.apple.TextEdit PlainTextEncodingForWrite -int 4
##
# Disk Utility
##
# Enable the debug menu in Disk Utility
defaults write com.apple.DiskUtility DUDebugMenuEnabled -bool true
defaults write com.apple.DiskUtility advanced-image-options -bool true
##
# App Store
##
# Enable the WebKit Developer Tools in the Mac App Store
defaults write com.apple.appstore WebKitDeveloperExtras -bool true
# Enable Debug Menu in the Mac App Store
defaults write com.apple.appstore ShowDebugMenu -bool true
# Enable the automatic update check
defaults write com.apple.SoftwareUpdate AutomaticCheckEnabled -bool true
# Check for software updates daily, not just once per week
defaults write com.apple.SoftwareUpdate ScheduleFrequency -int 1
# Download newly available updates in background
defaults write com.apple.SoftwareUpdate AutomaticDownload -int 1
# Install System data files & security updates
defaults write com.apple.SoftwareUpdate CriticalUpdateInstall -int 1
# Automatically download apps purchased on other Macs
# defaults write com.apple.SoftwareUpdate ConfigDataInstall -int 1
# Turn on app auto-update
defaults write com.apple.commerce AutoUpdate -bool true
# Allow the App Store to reboot machine on macOS updates
defaults write com.apple.commerce AutoUpdateRestartRequired -bool true
##
# Photos
##
# Prevent Photos from opening automatically when devices are plugged in
defaults -currentHost write com.apple.ImageCapture disableHotPlug -bool true
##
# Google Chrome
##
# Disable the all too sensitive backswipe on trackpads
defaults write com.google.Chrome AppleEnableSwipeNavigateWithScrolls -bool false
# Disable the all too sensitive backswipe on Magic Mouse
defaults write com.google.Chrome AppleEnableMouseSwipeNavigateWithScrolls -bool false
# Use the system-native print preview dialog
defaults write com.google.Chrome DisablePrintPreview -bool true
# Expand the print dialog by default
defaults write com.google.Chrome PMPrintingExpandedStateForPrint2 -bool true
##
# Keyboard/Hammerspoon
##
# Set Hammerspoon entrypoint to $XDG_CONFIG_HOME/hammerspoon/init.lua (~/.config/hammerspoon/init.lua)
defaults write org.hammerspoon.Hammerspoon MJConfigFile "$XDG_CONFIG_HOME/hammerspoon/init.lua"
# Disable Dock icon for Hammerspoon
defaults write org.hammerspoon.Hammerspoon MJShowDockIconKey -bool FALSE
# Disable press-and-hold for keys in favor of key repeat
defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false
# Set a blazingly fast keyboard repeat rate
# defaults write NSGlobalDomain KeyRepeat -int 1
# defaults write NSGlobalDomain InitialKeyRepeat -int 10
# -- SET KEYBOARD SHORTCUTS
# - REF: https://github.com/stevearc/dotfiles/blob/master/scripts/mac.sh
# @: Command
# $: Shift
# ~: Alt
# ^: Ctrl
# defaults write com.google.Chrome NSUserKeyEquivalents -dict-add "Reopen Closed Tab" -string '^$t'
# defaults write com.google.Chrome NSUserKeyEquivalents -dict-add "New Window" -string '^n'
# defaults write com.google.Chrome NSUserKeyEquivalents -dict-add "New Incognito Window" -string '^$n'
# defaults write com.google.Chrome NSUserKeyEquivalents -dict-add 'Developer Tools' -string '^Si'
# Install nerdicons symbol fonts
sh $HOME/.dotfiles/bin/nerdfonts.sh
# Backup MacOS/system default /etc/zshrc
[[ -e /etc/zshrc ]] &&
sudo mv /etc/zshrc "/etc/zshrc.backup-before-dotfiles-${BACKUP_TIMESTAMP}" &&
log_ok "Backed up system default /etc/zshrc to /etc/zshrc.backup-before-dotfiles-${BACKUP_TIMESTAMP}.."
set +x
##
# Kill affected applications
##
dock_apps_to_remove=(
"Launchpad"
"Mail"
"Contacts"
"Notes"
"Reminders"
"Maps"
"Photos"
"FaceTime"
"iTunes"
"iBooks"
"App Store"
"System Preferences"
"Calendar"
"Safari"
)
for app in "${dock_apps_to_remove[@]}"; do
log "removing \"${app}\" from the dock."
# remove apps from dock
# osascript -e 'tell application "System Events" to make login item at end with properties {path:"/Applications/${app}.app", hidden:true}' > /dev/null
dockutil --remove "${app}" && log_ok "done" || log_error "unable to remove ${app} from the dock"
done
function app_is_running {
osascript -so -e "application \"$1\" is running"
}
# function ask {
# local app compcontext question reply
# app="$1"
# compcontext='yn:yes or no:(y n)'
# question="%BShould ${app} be quit right now?%b"
# while true ; do
# vared -e -p "${question} (y/n or <ctrl-c>) " reply
# case "$reply" in
# (Y* | y*) return 0 ;;
# (N* | n*) return 1 ;;
# esac
# done
# }
apps_to_restart=(
"Activity Monitor"
"Address Book"
"Calendar"
"cfprefsd"
"Contacts"
"Dock"
"Finder"
"Google Chrome"
"Photos"
"Safari"
"SystemUIServer"
)
for app in "${apps_to_restart[@]}"; do
if [[ "$(app_is_running "${app}")" == "true" ]]; then
log "\"${app}\" needs to be restarted; proceeding to quit"
killall "${app}" &>/dev/null && log_ok "DONE"
fi
done
apps_to_launch=(
"1Password"
"Alfred 5"
"Bartender 4"
"BetterTouchTool"
"Brave Browser Dev"
"Cloudflare WARP"
"Colorsnapper2"
"Contexts"
"Fantastical"
"Hammerspoon"
"iStat Menus"
"Karabiner-Elements"
"kitty"
"Messages"
)
for app in "${apps_to_launch[@]}"; do
if [[ ! "$(app_is_running "${app}")" == "true" ]]; then
echo "Launching \"${app}\"."
open /Applications/${app}.app
sleep 2
echo
fi
done
apps_to_startup=(
"1Password"
"Alfred 5"
"Bartender 4"
"BetterTouchTool"
"Cloudflare WARP"
"Colorsnapper2"
"Contexts"
"Fantastical"
"Hammerspoon"
"iStat Menus"
"Karabiner-Elements"
)
for app in "${apps_to_startup[@]}"; do
log "setting to \"${app}\" to launch at startup."
# Enable apps at startup
osascript -e 'tell application "System Events" to make login item at end with properties {path:"/Applications/${app}.app", hidden:true}' >/dev/null && log_ok "DONE"
done
# Set brave as default browser!
defaults write "com.brave.Browser" ExternalProtocolDialogShowAlwaysOpenCheckbox -bool true
# Set sketchyvim's visual highlight to green (https://github.com/FelixKratz/SketchyVim#installation)
defaults write NSGlobalDomain AppleHighlightColor -string "0.615686 0.823529 0.454902"
sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.DiskArbitration.diskarbitrationd.plist DADisableEjectNotification -bool YES
sudo pkill diskarbitrationd
# alt: https://ejectify.app/
log_ok "DONE please note that some of these changes require a full logout/restart to take effect."
# TODO:
# - programmatically set keyboard shortcuts for apps: https://github.com/kassio/dotfiles/blob/master/lib/macos/shortcuts