Show Menu
Cheatography

The Dock of Mac Cheat Sheet (DRAFT) by

The Dock is a prominent feature of the graphical user interface of macOS. It is used to launch applications and to switch between running applications.

This is a draft cheat sheet. It is a work in progress and is not finished yet.

The Dock

The Dock is a prominent feature of the graphical user interface of macOS. It is used to launch applic­ations and to switch between running applic­ations.

macOS Dock appareance

Keyboard shortcuts and actions

Keypress
Action
⌃ + fn + F3
Show or Focus on the Dock
⌃ + F3
Show or Focus on the Dock when
Fn
keys are locked
⌥ + ⌘ + D
Show/hide the Dock
Select left applic­ation
Select right applic­ation
Enter
Switch to the selected applic­ation

Managing the Dock through defaults

Additi­onally to System Settings, the Dock can be adjusted using the
defaults
command (from the command line using Terminal or a similar applic­ation). All these commands requires to relaunch the Dock. So, for practical purposes all the commands shown here includes the
killall Dock
command.

The defaults command

defaults
allows users to read, write, and delete macOS user defaults from a comman­d-line shell.

defaults actions

Action
Descri­ption
read
Prints all of the user's defaults, for every domain, to standard output.
write
Writes value as the value for key in domain. value must be a property list, and must be enclosed in single quotes.
delete
Removes all default inform­ation for domain or a key ion a domain

Domains, keys and values

A default belong to a domain, a domain name of the form
com.co­mpa­nyn­ame.ap­pname
, which typically correspond to individual applic­ations. Each domain has a dictionary of keys and values repres­enting its defaults; for example, "­Def­aul­t F­ont­" = "­Hel­vet­ica­". Keys are always strings, but values can be complex data structures comprising arrays, dictio­naries, strings, and binary data. These data structures are stored as XML property lists.
Flag
Type
-string
Default value type if no flag type is provided. Allows the user to specify a string as the value for the given preference key.
-int[eger]
Allows the user to specify an integer as the value for the given preference key.
-float
Allows the user to specify a floating point number as the value for the given preference key.
-bool[ean]
Allows the user to specify a boolean as the value for the given preference key. Value must be TRUE, FALSE, YES, or NO
 
For more inform­ation on other flags, consult the online help in the command line via Terminal or similar applic­ations (e.g.
man defaults
).

Empty

 

References

1. "Dock (macOS)", Wikipedia, web. Visited: 2024.1­2.18. URL: https:­//e­n.w­iki­ped­ia.o­rg­/wi­ki/­Doc­k_(­macOS))
2.
man defaults
, macOS 15.2, General Commands Manual.
3. "The Dock on your Mac", Apple Inc., web. Visited: 2024.1­2.18. URL: https:­//s­upp­ort.ap­ple.co­m/e­n-c­a/g­uid­e/m­acb­ook­-ai­r/a­pd4­b7f­b73­1f/mac

Reaction time

Time to show or to hide
defaults write com.ap­ple.Dock autohi­de-­delay -float 0.4; killall Dock
Animation time to show or to hide the Dock
defaults write com.ap­ple.dock autohi­de-­tim­e-m­odifier -float 1; killall Dock

Spaces, size and effects

Adding an space between the icons in the Dock
defaults write com.ap­ple.dock persis­ten­t-apps -array-add '{"t­ile­-ty­pe"=­"­spa­cer­-ti­le";}'; killall Dock
Size of the Dock
defaults write com.ap­ple.dock tilesize -float 48; killall Dock
Magnif­ication size
defaults write com.ap­ple.dock largesize -int 128; killall Dock

Applic­ations

To show all windows of an applic­ation doing an scroll action on the icon
defaults write com.ap­ple.dock scroll­-to­-open -bool TRUE; killall Dock
To keep only the active applic­ations
defaults write com.ap­ple.dock static­-only -bool TRUE; killall Dock
To highlight hidden (⌘ + H) applic­ations
defaults write com.ap­ple.dock showhidden -bool TRUE; killall Dock

Resetting the Dock

Resetting the Dock to the factory settings
defaults delete com.ap­ple.dock; killall Dock