diff --git a/Vagrantfile b/Vagrantfile
index 064ebf2597f487237fefb71792400a24fc888caf..d4c32307329e17638f7985e5fba6f76b407bb4b9 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -28,6 +28,7 @@ Vagrant.configure("2") do |config|
     # Install fontconfig, wait for processing
 
     apt-get install -y --install-recommends winehq-stable
+    apt-get install -y winetricks
 
     # Install command
     cp -f /vagrant/tibbo_build.sh /usr/sbin/tibbo_build
diff --git a/build_as_vagrant.sh b/build_as_vagrant.sh
index 392fe56cb28c7f843b1c413c651377a39d3a1845..8cefc409ce3536f51fd3f8685b59caebbf2803d7 100644
--- a/build_as_vagrant.sh
+++ b/build_as_vagrant.sh
@@ -18,17 +18,21 @@ winetricks native_oleaut32
 wine start.exe
 ln -s /vagrant /home/vagrant/.wine/drive_c/vagrant
 
+# Install Tibbo tools - in the background
+$(mkdir -p "/home/vagrant/.wine/drive_c/Program Files/Tibbo" &&
+wget http://dev.dms-serwis.com.pl/misc/tide-tibbo-lite-5.1.3-win32.zip -O /tmp/tibbo.zip &&
+unzip /tmp/tibbo.zip -d "/home/vagrant/.wine/drive_c/Program Files/Tibbo") &
+
 # Only now is it safe to install Mono :/ it requires wine for setup
 sudo apt-get install -y winbind mono-complete
 
-# Install Tibbo tools
-mkdir -p "/home/vagrant/.wine/drive_c/Program Files/Tibbo"
-wget http://dev.dms-serwis.com.pl/misc/tide-tibbo-lite-5.1.3-win32.zip -O /tmp/tibbo.zip
-unzip /tmp/tibbo.zip -d "/home/vagrant/.wine/drive_c/Program Files/Tibbo"
 
 # WINE extensions - max 15 minutes!
 cd /home/vagrant/.wine/drive_c
 winetricks dotnet40 corefonts
 
+wait %1
+
+
 kill -9 %1
 touch /vagrant/OK
\ No newline at end of file