diff options
-rwxr-xr-x | kvmx | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -224,8 +224,12 @@ function kvmx_spice { # Give time to connect sleep 5 - # Fix window titles + # Fix window title an position if which /usr/bin/xdotool &> /dev/null; then + if [ ! -z "$spice_windowmove" ]; then + xdotool search --name "SPICEc:0" windowmove $spice_windowmove + fi + xdotool search --name "SPICEc:0" set_window --name $VM fi } |