Hyprland-dotfiles/scripts/launchVM.sh

10 lines
225 B
Bash
Raw Normal View History

2023-02-06 11:28:27 -05:00
#!/bin/bash
virsh --connect qemu:///system start RDPWindows
2023-02-08 09:33:11 -05:00
echo "Waiting 30 sec for Windows 10 startup..."
sleep 30
echo "Starting xfreerdp now..."
xfreerdp /v:Windows10 /size:100% /d: /p:sancho /dynamic-resolution &
2023-02-12 13:44:13 -05:00
exit