Set appearance to light.
Dark mode hurts my eyes.
Appearance | Keys | Values | Status |
---|---|---|---|
Light | Default | ||
Dark | AppleInterfaceStyle | Dark | |
Auto | AppleInterfaceStyleSwitchesAutomatically | true |
defaults delete AppleInterfaceStyle
defaults delete AppleInterfaceStyleSwitchesAutomatically
Set accent color to Pink.
Accent Color | Values | Status |
---|---|---|
Red | 0 | |
Orange | 1 | |
Yellow | 2 | |
Green | 3 | |
Blue | 4 | default |
Purple | 5 | |
Pink | 6 | |
Logan | 7 | |
Paris Daisy | 8 | |
Coral | 9 | |
Silver | 10 | custome |
defaults write -g AppleAccentColor -int 6
Set highlight color to Pink.
Highlight Color | Values | Status |
---|---|---|
Red | “1.000000 0.733333 0.721569 Red” | |
Orange | “1.000000 0.874510 0.701961 Orange” | |
Yellow | “1.000000 0.937255 0.690196 Yellow” | |
Green | “0.752941 0.964706 0.678431 Green” | |
Blue | “0.847059 0.847059 0.862745 Blue” | default |
Purple | “0.968627 0.831373 1.000000 Purple” | |
Pink | “1.000000 0.749020 0.823529 Pink” | |
Brown | “0.929412 0.870588 0.792157 Brown” | |
Graphite | “0.847059 0.847059 0.862745 Graphite” | |
Silver | “0.776500 0.776500 0.776500 Silver” | custom |
Calculate on your own: https://apple.stackexchange.com/a/164905/306411
defaults write -g AppleHighlightColor -string "1.000000 0.749020 0.823529 Pink"
Set sidebar icon size to medium.
Icon Size | Values | Status |
---|---|---|
Small | 1 | |
Medium | 2 | default |
Large | 3 |
defaults write -g NSTableViewDefaultSizeMode -int 2
Allow wallpaper tinting in windows.
defaults write -g AppleReduceDesktopTinting -int 0
Show scroll bars automatically.
Scroll Bar Behaviors | Values |
---|---|
Automatically based on mouse or trackpad | “Automatic” |
When scrolling | “WhenScrolling” |
Always | “Always” |
defaults write -g AppleShowScrollBars -string "Automatic"
Click in the scroll bar to jump to the sport that’s clicked.
Click Scroll Bar Behaviors | Values |
---|---|
Jump to the spot that’s clicked | true |
Jump to the next page | false |
defaults write -g AppleScrollerPagingBehavior -bool true
Set default browser to Chrome.
brew install dnlggr/tap/default-browser
default-browser set chrome
osascript confirm-system-dialog.applescript
Pefer tabs: never when opening documents
Options | Values |
---|---|
never | manual |
in full screen | fullscreen |
always | always |
defaults write -g AppleWindowTabbingMode -string "manual"
Disable ask to keep changes when closing documents.
defaults write -g NSCloseAlwaysConfirmsChanges -bool false
Close windows when quitting an app.
When it’s true, open documents and windows will not be restored when you re-open an app.
defaults write -g NSQuitAlwaysKeepsWindows -bool true
Set recent items to 0.
for category in 'applications' 'documents' 'servers'; do
/usr/bin/osascript -e "tell application \"System Events\" to tell appearance preferences to set recent $category limit to 0"
done
Allow Handoff between this Mac and your iCloud devices.
defaults -currentHost write com.apple.coreservices.useractivityd ActivityAdvertisingAllowed -bool yes
defaults -currentHost write com.apple.coreservices.useractivityd ActivityReceivingAllowed -bool yes