Skip Navigation
Jump
How do I disable the behaviour where dragging a window to the top of the screen creates additional virtual desktops?
  • You can disable Mission Control and Spaces by typing the following command in terminal:

    defaults write com.apple.dock mcx-expose-disabled -bool TRUE && killall Dock

    If for some reason you want it back you can type in the following into terminal:

    defaults delete com.apple.dock mcx-expose-disabled && killall Dock

    You can google the commands above to check the authenticity of my answer. Hope this helps. 😊

    1