32

Is it possible to change the delay on the full screen mode window toolbar in OS X Yosemite?

I'm thinking of something like this, but for the toolbar

defaults write com.apple.dock autohide-delay -float 5

I love using full screen mode, but I'm frequently accidentally triggering the toolbar which covers up whatever I'm trying to access at the top of the screen.

  • 1
    From my search on the defaults domainsI've found nothing regarding the Menu/Tool bar. As explained here: http://apple.stackexchange.com/a/252515/79808 – dordio Sep 15 '16 at 08:18
  • defaults write com.apple.Dock autohide-delay -float 0.05 && killall Dock -float = time – ABC May 09 '21 at 04:49
  • Interesting : https://communities.vmware.com/t5/VMware-Workstation-Pro/Resize-relocate-remove-or-delay-Toolbar-in-Fullscreen-mode/td-p/1299072 – Thinkr May 18 '23 at 09:40

1 Answers1

-3

Try

defaults write -g NSWindowResizeTime -float 0.001

or

defaults delete -g NSWindowResizeTime

to revert it. Taken from http://www.defaults-write.com/disable-full-screen-animation-of-os-x/.

nohillside
  • 100,768
Harv
  • 6,520