Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. # add spacer tile
  2. defaults write com.apple.dock persistent-apps -array-add '{"tile-type"="spacer-tile";}'
  3.  
  4. # move doc location start/middle/end left/bottom/right
  5. defaults write com.apple.dock pinning -string start
  6.  
  7. # use suck effect to minimize
  8. defaults write com.apple.dock mineffect suck
  9.  
  10. # add rfecents folder to dock
  11. defaults write com.apple.dock persistent-others -array-add '{ "tile-data" = { "list-type" = 1; }; "tile-type" = "recents-tile"; }'
  12.  
  13. # then
  14. killall Dock
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement