# Autohide

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

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

# Set to false (default value)

Always display the Dock

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

# Set to true

Autohide the Dock when the mouse is out

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

# Read current value

defaults read com.apple.dock "autohide"

# Reset to default value

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