# Autohide
Autohides the Dock. You can toggle the Dock using
⌥ alt
+⌘ cmd
+d
.
- Tested on macOS:
- Big Sur
- Catalina
- Mojave
- Parameter type: bool
# Set to false
(default value)
defaults write com.apple.dock autohide -bool false && killall Dock
- Always display the Dock
# Set to true
defaults write com.apple.dock autohide -bool true && killall Dock
- Autohide the Dock when the mouse is out
# Read current value
defaults read com.apple.dock autohide
# Delete current value
defaults delete com.apple.dock autohide && killall Dock