Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
295 B

4 years ago
  1. #!/bin/sh
  2. exec qemu-system-x86_64 -enable-kvm \
  3. -cpu host \
  4. -drive file=/home/yigit/.local/share/Virtual/WindowsVM.img,if=virtio \
  5. -net nic -net user,hostname=windowsvm \
  6. -m 4G \
  7. -smp 6 \
  8. -monitor stdio \
  9. -name "Windows" \
  10. "$@"