0xdevalias / dotfiles

devalias does dotfiles
http://zachholman.com/2010/08/dotfiles-are-meant-to-be-forked/
MIT License
8 stars 1 forks source link

[macOS::defaults::Dock] Automatically configure defaults for the dock #15

Open 0xdevalias opened 3 years ago

0xdevalias commented 3 years ago
⇒  open /System/Library/PreferencePanes/Dock.prefPane

# list all possible 'domains' we can read/write to
⇒  defaults domains

# search for all defaults containing the word 'dock'
⇒  defaults find dock

# smallest end of the prefpane slider on macOS catalina is 16, largest is 128.
# old mid 2015 laptop had 38 set, 40 looks better on 2019 16"
⇒  defaults write com.apple.dock tilesize -int 40

⇒  defaults write com.apple.dock autohide -bool true
⇒  defaults write com.apple.dock magnification -bool false

# when we are done making changes
killall Dock