9 lines
218 B
Bash
9 lines
218 B
Bash
#!/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"
|