Is there a way to increment the Display Monitor Count in Virtualbox using the Vagrantfile. Currently the default is set to 1 display monitor.
Hi @hodiapa
There is no high-level configuration option, but you can use the customize stanza with the modifyvm command. You can find the option in the VirtualBox documentation. Thanks! :smile:
Just for anyone else who might be refering to this issue. Solution is:
config.vm.provider "virtualbox" do |vb|
vb.customize ["modifyvm", :id, "--monitorcount", "2"]
end
Most helpful comment
Just for anyone else who might be refering to this issue. Solution is:
config.vm.provider "virtualbox" do |vb|
vb.customize ["modifyvm", :id, "--monitorcount", "2"]
end