From 50e43971454fa3878a19dff6c807cb42abf03bbb Mon Sep 17 00:00:00 2001 From: Tom Marshall Date: Thu, 13 May 2021 14:25:09 -0700 Subject: [PATCH] Add name argument to allow the VNC/SDL window title to be set --- vmmd | 1 + 1 file changed, 1 insertion(+) diff --git a/vmmd b/vmmd index b2605d3..8d9a6d0 100755 --- a/vmmd +++ b/vmmd @@ -988,6 +988,7 @@ class VirtualMachine(DbObject): raise RuntimeError('Unknown arch') argv = [prog] argv.extend(['-daemonize', '-pidfile', self._qemu_pidfile()]) + argv.extend(['-name', self['name']]) argv.extend(['-machine', machine_arg, '-cpu', cpu_arg]) ethdev = 'virtio-net' if self['ostype'] == 'linux' else 'e1000' blkopt = ''