Skip to content

Latest commit

 

History

History
132 lines (117 loc) · 5.23 KB

File metadata and controls

132 lines (117 loc) · 5.23 KB

General

Set appearance to light.
Dark mode hurts my eyes.

AppearanceKeysValuesStatus
LightDefault
DarkAppleInterfaceStyleDark
AutoAppleInterfaceStyleSwitchesAutomaticallytrue
defaults delete AppleInterfaceStyle
defaults delete AppleInterfaceStyleSwitchesAutomatically

Set accent color to Pink.

Accent ColorValuesStatus
Red0
Orange1
Yellow2
Green3
Blue4default
Purple5
Pink6
Logan7
Paris Daisy8
Coral9
Silver10custome
defaults write -g AppleAccentColor -int 6

Set highlight color to Pink.

Highlight ColorValuesStatus
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 SizeValuesStatus
Small1
Medium2default
Large3
defaults write -g NSTableViewDefaultSizeMode -int 2

Allow wallpaper tinting in windows.

defaults write -g AppleReduceDesktopTinting -int 0

Show scroll bars automatically.

Scroll Bar BehaviorsValues
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 BehaviorsValues
Jump to the spot that’s clickedtrue
Jump to the next pagefalse
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

OptionsValues
nevermanual
in full screenfullscreen
alwaysalways
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