Created
October 5, 2016 16:21
-
-
Save joncardasis/0cfded6f547be92e2abdc1bab825f95f to your computer and use it in GitHub Desktop.
VMWare Fusion OSX Retina Display Settings Fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Problem : OSX in VMWare displays at too high a resolution | |
# Fix : Enable custom resolution setting for a screen size in perferences | |
# | |
# Run this script to turn on display settings in system preferences to allow OSX in VMWare to display | |
# at a proper resolution for the screensize | |
sudo defaults write /Library/Preferences/com.apple.windowserver.plist DisplayResolutionEnabled -bool true | |
echo "Reboot this VM and select the proper display setting in System Preferences." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment