diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-10-25 14:37:15 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-10-25 14:37:15 -0300 |
commit | b208e05e91a33c90bec6b5a013c3d7855db6bacf (patch) | |
tree | 626968e0d9c3b3346262d7392f2bad936b2b06f5 | |
parent | 650128c37a1f56d7c12dd2e7583c111e31591f14 (diff) | |
download | kvmx-b208e05e91a33c90bec6b5a013c3d7855db6bacf.tar.gz kvmx-b208e05e91a33c90bec6b5a013c3d7855db6bacf.tar.bz2 |
Removes spice-client support
-rwxr-xr-x | kvmx | 20 |
1 files changed, 13 insertions, 7 deletions
@@ -254,29 +254,35 @@ function kvmx_spice { spicy -h localhost -p $PORT & elif [ "$spice_client" == "virt-viewer" ] && which virt-viewer &> /dev/null; then remote-viewer spice://localhost:$PORT & - elif [ ! -z "$spice_client" ] && [ "$spice_client" != "spicec" ]; then + #elif [ ! -z "$spice_client" ] && [ "$spice_client" != "spicec" ]; then + elif [ ! -z "$spice_client" ]; then echo "$BASENAME: spice_client $spice_client not currently supported" exit 1 else - if which spicec &> /dev/null; then - # https://lists.freedesktop.org/archives/spice-devel/2013-September/014643.html - SPICE_NOGRAB=1 spicec --host localhost --port $PORT &> $SPICELOG & + if which spicy &> /dev/null; then + spicy -h localhost -p $PORT & fi + + #if which spicec &> /dev/null; then + # # https://lists.freedesktop.org/archives/spice-devel/2013-September/014643.html + # SPICE_NOGRAB=1 spicec --host localhost --port $PORT &> $SPICELOG & + #fi fi SPICEPID="$!" echo "$SPICEPID" > $SPICEFILE # Give time to connect - sleep 1 + sleep 2 # Fix window title an position if which /usr/bin/xdotool &> /dev/null; then if [ ! -z "$xclient_windowmove" ]; then - xdotool search --name "SPICEc:0" windowmove $xclient_windowmove + #xdotool search --name "SPICEc:0" windowmove $xclient_windowmove + xdotool search --name "spice display 0:0" windowmove $xclient_windowmove fi - xdotool search --name "SPICEc:0" set_window --name $VM + #xdotool search --name "SPICEc:0" set_window --name $VM xdotool search --name "spice display 0:0" set_window --name $VM fi |