Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xgenvn/925818b3fa976f5a0c1a2b2c1822d65c to your computer and use it in GitHub Desktop.
Save xgenvn/925818b3fa976f5a0c1a2b2c1822d65c to your computer and use it in GitHub Desktop.
VirtualBox MacOS Turn off high resolution

Display current settings

sudo /usr/libexec/PlistBuddy \
    -c 'print NSHighResolutionCapable' \
    /Applications/VirtualBox.app/Contents/Resources/VirtualBoxVM.app/Contents/Info.plist

Update setting (switch off high resolution for performance)

sudo /usr/libexec/PlistBuddy \
    -c 'set NSHighResolutionCapable false' \
    /Applications/VirtualBox.app/Contents/Resources/VirtualBoxVM.app/Contents/Info.plist

Refs

https://apple.stackexchange.com/a/430002

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment