AndrewDryga / vagrant-box-osx

Issue tracker for macOS Sierra Vagrant box.
https://app.vagrantup.com/AndrewDryga/boxes/vagrant-box-osx
MIT License
984 stars 106 forks source link

What to add to Vagrantfile to be able to have higher resolutions #62

Closed skela closed 7 years ago

skela commented 7 years ago

I notice that there is a setting in there to set the RAM, so I wonder, is there something similar for the resolution?

WayneBuckhanan commented 7 years ago
config.vm.provider "virtualbox" do |vb|
    # set resolution on OSX:
    # 0,1,2,3,4,5 :: 640x480, 800x600, 1024x768, 1280x1024, 1440x900, 1920x1200
    vb.customize ["setextradata", :id, "VBoxInternal2/EfiGopMode", "5"]
    # see https://www.virtualbox.org/manual/ch03.html#efividmode for more info
end
skela commented 7 years ago

Man that's awesome, thx!