qemush/qemu/launchers/windows10
2023-12-13 12:41:28 +01:00

10 lines
220 B
Bash
Executable file

#!/bin/sh -x
name="$(basename "$0")"
exec kvm-spice \
-monitor stdio \
-drive file="$(diskpath "$name")",if=virtio \
-net user,hostname="${name}" \
-device virtio-serial \
-usbdevice tablet \
-name "$name" \
"$@"