Skip to content

Autohide

Autohides the Dock. You can toggle the Dock using ⌥ alt+⌘ cmd+d.

  • Tested on macOS:
    • Sonoma
    • Ventura
    • Monterey
    • Big Sur
    • Catalina
    • Mojave
  • Parameter type: bool

Set to false (default value)

Always display the Dock

bash
defaults write com.apple.dock "autohide" -bool "false" && killall Dock

Set to true

Autohide the Dock when the mouse is out

bash
defaults write com.apple.dock "autohide" -bool "true" && killall Dock

Read current value

bash
defaults read com.apple.dock "autohide"

Reset to default value

bash
defaults delete com.apple.dock "autohide" && killall Dock

Set value from UI

  1. Access Dock settings from macOS UI
  2. Toggle "Automatically hide and show the Dock" value