# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
config.vm.box = "jhcook/osx-elcapitan-10.11" | |
config.vm.provider "virtualbox" do |vb| | |
vb.gui = true | |
vb.name = "osx-el-capitan" | |
vb.memory = "4096" | |
# Switch to EFI | |
vb.customize ["modifyvm", :id, "--firmware", "efi"] | |
# Enable GOP (Graphics Output Protocol and switch to 1920x1200 | |
# 0,1,2,3,4,5 refers to 640x480,800x600,1024x768,1280x1024,1440x900,1920x1200 | |
vb.customize ["setextradata", :id, "VBoxInternal2/EfiGopMode", "5"] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment