How to configure multiple monitors for the provider vmware-workstation
in Vagrantfile
?
For the provider virtualbox
this can be done as follows:
config.vm.provider :virtualbox do |vb|
vb.gui = true
vb.customize ["modifyvm", :id, "--monitorcount", "2"]
As result the vm will be displayed on 2 monitors. How can I do this for vmware-workstation
?