8

The amount that you have to move the mouse downwards to get the dock to trigger is too high in my opinion. I've only found the following settings:

defaults write com.apple.dock autohide-time-modifier -float 0

This set the speed of the transition to 0, but does not make it easier to trigger.

defaults write com.apple.Dock autohide-delay -float 0

This sets the delay to 0 once triggered, but does not make it easier to trigger.

I want it to launch the moment the mouse touches the edge of my screen.

Thanks

Edit: the suggested duplicate has no answers that answer this question as addressed in the text above.

nohillside
  • 100,768
Rob
  • 81

1 Answers1

12

Not sure why but with that setup, it feels pretty easy to trigger dock show/hide for me. I found 0.4 suits me most.

defaults write com.apple.dock autohide-delay -int 0
defaults write com.apple.dock autohide-time-modifier -float 0.4
killall Dock
  • 1
    that looks like a Dupe from this answer http://apple.stackexchange.com/a/70598/46541 – Ruskes Jun 05 '15 at 05:02
  • 3
    For some reason it requires me to drag my mouse/finger down even once I've reached the edge of the screen. The extra drag drives me crazy.

    It's much more noticeable with the mouse.

    – Rob Jun 05 '15 at 06:08
  • The second line is unnecessary. However, it does make it feel faster – Kalabasa Jul 24 '23 at 02:43
  • OMG thank you for this answer, this was bugging me! – Mr Chow Mar 15 '24 at 15:57