Autohide animation time 
Change the Dock opening and closing animation times.
- Tested on macOS: 
- Sonoma
 - Ventura
 - Monterey
 - Big Sur
 - Catalina
 - Mojave
 
 - Parameter type: float
 
Requirements 
com.apple.dock autohidemust be set totrue
Set to 0.5 (default value) 
By default, the Dock opening and closing animations take 0.5 seconds
bash
defaults write com.apple.dock "autohide-time-modifier" -float "0.5" && killall DockSet to 2 
Increase the Dock animation time
bash
defaults write com.apple.dock "autohide-time-modifier" -float "2" && killall DockSet to 0 
Remove the Dock autohide animation
bash
defaults write com.apple.dock "autohide-time-modifier" -float "0" && killall DockRead current value 
bash
defaults read com.apple.dock "autohide-time-modifier"Reset to default value 
bash
defaults delete com.apple.dock "autohide-time-modifier" && killall Dock