设置Dock栏自动隐藏的触发速度
Dock 显示和隐藏速度,系统默认设置成了1秒
通过终端.APP修改显示和隐藏的时间 (单位:秒)
1
| defaults write com.apple.dock autohide-delay -int 1
|
1 2 3 4 5 6 7
| defaults write com.apple.dock autohide-delay -int 0.8
defaults write com.apple.dock autohide-delay -int 0.6
defaults write com.apple.dock autohide-delay -int 0.5
defaults write com.apple.dock autohide-delay -int 0
|
所有操作执行完后需要执行:
1
| defaults write com.apple.dock autohide-time-modifier -float 0.4
|
1
| defaults write com.apple.dock autohide-time-modifier -float 0.2
|
1
| defaults write com.apple.dock autohide-time-modifier -int 0
|
1
| defaults delete com.apple.dock autohide-time-modifier
|