10 lines
218 B
Text
10 lines
218 B
Text
|
#!/bin/bash
|
||
|
|
||
|
domstate=$(virsh --connect=qemu:///system domstate "Windows10")
|
||
|
|
||
|
if ! grep -q "$domstate" running; then
|
||
|
virsh --connect=qemu:///system start "Windows10"
|
||
|
fi
|
||
|
|
||
|
looking-glass-client win:title="Windows 10"
|