Re: [Spice-devel] spicy client only renders first frame?

2016-03-02 Thread Victor Toso
Hi, On Thu, Feb 11, 2016 at 11:12:49PM +, Rafael Send wrote: > Hello- > I've built spice-gtk-3 from spice-space.org on tinycore linux (64-bit). For > this, I also had to built the server, the protocol and qemu itself with > spice support; all of which seem to work fine (and things work great i

[Spice-devel] spicy client only renders first frame?

2016-03-01 Thread Rafael Send
Hello- I've built spice-gtk-3 from spice-space.org on tinycore linux (64-bit). For this, I also had to built the server, the protocol and qemu itself with spice support; all of which seem to work fine (and things work great in SDL mode). However, when I start the spicy client and connect to the VM

Re: [Spice-devel] [spicy PATCH 2/6 v6] spicy: Changed the dialog into a window

2015-06-18 Thread Christophe Fergeau
On Thu, Jun 18, 2015 at 04:39:26PM +0200, Christophe Fergeau wrote: > ACK. And I've pushed the series. Christophe pgpXxiUcaskGN.pgp Description: PGP signature ___ Spice-devel mailing list Spice-devel@lists.freedesktop.org http://lists.freedesktop.org/

Re: [Spice-devel] [spicy PATCH 2/6 v6] spicy: Changed the dialog into a window

2015-06-18 Thread Christophe Fergeau
ACK. Christophe On Thu, Jun 18, 2015 at 04:35:24PM +0200, Lukas Venhoda wrote: > Changed connect dialog from GtkDialog to GtkWindow. > > Added the necessary signals and buttons, to keep then > behaviour of a dialog (ESC to close, ENTER to submit). > > spicy_connect_dialog now returns TRUE and F

[Spice-devel] [spicy PATCH 2/6 v6] spicy: Changed the dialog into a window

2015-06-18 Thread Lukas Venhoda
Changed connect dialog from GtkDialog to GtkWindow. Added the necessary signals and buttons, to keep then behaviour of a dialog (ESC to close, ENTER to submit). spicy_connect_dialog now returns TRUE and FALSE instead of 0 and -1. --- Changes since v5 - Changed gtk2 compatibility macro back -

Re: [Spice-devel] [spicy PATCH 0/6 v5] spicy: Rewrite of connect dialog

2015-06-18 Thread Christophe Fergeau
ACK series, one minor comment in 2/6 Christophe On Tue, Jun 16, 2015 at 04:23:28PM +0200, Lukas Venhoda wrote: > Connect dialog didn't have a parent window. > > Changed dialog to a window, because spicy creates no window prior to creating > the dialog. No parent can be supplied. > > Moved the "

Re: [Spice-devel] [spicy PATCH 2/6 v5] spicy: Changed the dialog into a window

2015-06-18 Thread Christophe Fergeau
On Tue, Jun 16, 2015 at 04:23:30PM +0200, Lukas Venhoda wrote: > Changed connect dialog from GtkDialog to GtkWindow. > > Added the necessary signals and buttons, to keep then > behaviour of a dialog (ESC to close, ENTER to submit). > > spicy_connect_dialog now returns TRUE and FALSE instead of 0

[Spice-devel] [spicy PATCH 4/6 v5] spicy: Host and port (or tls) are now required

2015-06-16 Thread Lukas Venhoda
Connect button is now non-sensitive when host and port (or tls) entry is empty. Pressing enter will now also NOT connect, when the entries are empty. --- Changes since v4 - Code cleanup. Removed useless variables. Changes since v3 - Changed required entries from HOST and PORT to HOST and (PORT o

[Spice-devel] [spicy PATCH 5/6 v5] spicy: Replace duplicated code with a for loop

2015-06-16 Thread Lukas Venhoda
Changed piece of code working with fixed size array into a for loop. --- Changes since v4 - Reworded shortlog Changes since v3 - New patch --- src/spicy-connect.c | 17 ++--- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/src/spicy-connect.c b/src/spicy-connect.c ind

[Spice-devel] [spicy PATCH 3/6 v5] spicy: Fixed reselecting in recent chooser

2015-06-16 Thread Lukas Venhoda
Selecting an entry in the recent connections list, and then modifying the host/port/TLS port, and double-clicking on that same entry in the list would cause spicy to connect to the edited address rather than the one which was picked in the recent chooser. After this commit, the selection will be c

[Spice-devel] [spicy PATCH 2/6 v5] spicy: Changed the dialog into a window

2015-06-16 Thread Lukas Venhoda
Changed connect dialog from GtkDialog to GtkWindow. Added the necessary signals and buttons, to keep then behaviour of a dialog (ESC to close, ENTER to submit). spicy_connect_dialog now returns TRUE and FALSE instead of 0 and -1. --- Changes since v4 - Squashed with "Changed response to gboolean

[Spice-devel] [spicy PATCH 1/6 v5] spicy: Move connect dialog to its own file

2015-06-16 Thread Lukas Venhoda
Connect dialog from spicy is now in its own file. Renamed connect_dialog to spicy_connect_dialog. Added new file for translation. --- Changes since v4 - Reworded shortlog No changes since v3 Changes since v2 - New patch - Reversed order of patches. Now create a module first, modify after. -

[Spice-devel] [spicy PATCH 6/6 v5] spicy: Enable recent chooser on windows

2015-06-16 Thread Lukas Venhoda
Recent chooser is working correctly in windows. --- Changes since v3 - Reworded commit message - Old one suggested, recent chooser doesn't work in gtk2 on windows Changes since v3 - New patch --- src/spicy-connect.c | 6 -- src/spicy.c | 4 2 files changed, 10 deletions(-)

[Spice-devel] [spicy PATCH 0/6 v5] spicy: Rewrite of connect dialog

2015-06-16 Thread Lukas Venhoda
Connect dialog didn't have a parent window. Changed dialog to a window, because spicy creates no window prior to creating the dialog. No parent can be supplied. Moved the "dialog" code to its own module. --- Changes since v4: - Reworded some shortlogs and commit logs - Squashed "Changed respon

Re: [Spice-devel] [spicy PATCH 7/7 v4] spicy: Enable recent chooser on windows

2015-06-16 Thread Lukas Venhoda
gt; From: "Christophe Fergeau" > To: "Lukas Venhoda" > Cc: spice-devel@lists.freedesktop.org > Sent: Tuesday, June 16, 2015 1:23:24 PM > Subject: Re: [Spice-devel] [spicy PATCH 7/7 v4] spicy: Enable recent chooser > on windows > > On Tue, Jun 16, 2015 a

Re: [Spice-devel] [spicy PATCH 4/7 v4] spicy: Fixed reselecting in recent chooser

2015-06-16 Thread Christophe Fergeau
Hey, The patch looks good, but the commit log could be improved imo. On Tue, Jun 16, 2015 at 11:41:54AM +0200, Lukas Venhoda wrote: > Recent chooser didn't unselect on loosing focus. > Selecting recent connection, then modifying the > entries and doubleclicking on the same recent > connection caus

Re: [Spice-devel] [spicy PATCH 5/7 v4] spicy: Host and port (or tls) are now required

2015-06-16 Thread Christophe Fergeau
On Tue, Jun 16, 2015 at 11:41:55AM +0200, Lukas Venhoda wrote: > Connect button is now non-sensitive when host and port (or tls) entry is > empty. > Pressing enter will now also NOT connect, when the entries are empty. > --- > Changes since v3 > - Changed required entries from HOST and PORT to HO

Re: [Spice-devel] [spicy PATCH 3/7 v4] spicy: Changed the dialog into a window

2015-06-16 Thread Christophe Fergeau
Hey, Mostly looks good, couple of comments below On Tue, Jun 16, 2015 at 11:41:53AM +0200, Lukas Venhoda wrote: > Changed connect dialog from GtkDialog to GtkWindow. > Added the necessary signals and buttons, to keep then > behaviour of a dialog (ESC to close, ENTER to submit). > --- > Changes si

Re: [Spice-devel] [spicy PATCH 6/7 v4] spicy: Changed duplicit lines to for loop

2015-06-16 Thread Christophe Fergeau
short log: "Replace duplicated code with a for loop" ? ACK. I usually use unsigned int for loop indexes, but this is not really important here. Christophe On Tue, Jun 16, 2015 at 11:41:56AM +0200, Lukas Venhoda wrote: > Changed piece of code working with fixed size array into a for loop. > --- >

Re: [Spice-devel] [spicy PATCH 7/7 v4] spicy: Enable recent chooser on windows

2015-06-16 Thread Christophe Fergeau
On Tue, Jun 16, 2015 at 11:41:57AM +0200, Lukas Venhoda wrote: > With gtk3, recent chooser is working correctly in windows. What about gtk2 ? It can be built, but I don't know if this is working? Christophe pgp_6w5UaBWKq.pgp Description: PGP signature ___

Re: [Spice-devel] [spicy PATCH 2/7 v4] spicy: Changed response to gboolean

2015-06-16 Thread Christophe Fergeau
On Tue, Jun 16, 2015 at 11:41:52AM +0200, Lukas Venhoda wrote: > spicy_connect_dialog now returns TRUE and FALSE instead of 0 and -1. ACK, though this goes away in the (big) next patch, so I would not mind if this was squashed in the next one. Christophe pgpklJmxuNYYw.pgp Description: PGP signa

Re: [Spice-devel] [spicy PATCH 1/7 v4] spicy: Connect dialog moved to its own file

2015-06-16 Thread Christophe Fergeau
Looks good, I'd change the short log to something like "spicy: Move connect dialog to its own file". ACK Christophe On Tue, Jun 16, 2015 at 11:41:51AM +0200, Lukas Venhoda wrote: > Connect dialog from spicy is now in its own file. > > Renamed connect_dialog to spicy_connect_dialog. > > Added ne

[Spice-devel] [spicy PATCH 2/7 v4] spicy: Changed response to gboolean

2015-06-16 Thread Lukas Venhoda
spicy_connect_dialog now returns TRUE and FALSE instead of 0 and -1. --- No changes since v3 Changes since v2 - New patch --- src/spicy-connect.c | 9 + src/spicy-connect.h | 2 +- src/spicy.c | 6 ++ 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/src/spicy-co

[Spice-devel] [spicy PATCH 5/7 v4] spicy: Host and port (or tls) are now required

2015-06-16 Thread Lukas Venhoda
Connect button is now non-sensitive when host and port (or tls) entry is empty. Pressing enter will now also NOT connect, when the entries are empty. --- Changes since v3 - Changed required entries from HOST and PORT to HOST and (PORT or TLS-PORT) Changes since v2 - New patch - Split from the v

[Spice-devel] [spicy PATCH 0/7 v4] spicy: Rewrite of connect dialog

2015-06-16 Thread Lukas Venhoda
Connect dialog didn't have a parent window. Changed dialog to a window, because spicy creates no window prior to creating the dialog. No parent can be supplied. Moved the "dialog" code to its own module. --- Changes since v3: - Enabled recent chooser on windows - Changed duplicate blocks of co

[Spice-devel] [spicy PATCH 3/7 v4] spicy: Changed the dialog into a window

2015-06-16 Thread Lukas Venhoda
Changed connect dialog from GtkDialog to GtkWindow. Added the necessary signals and buttons, to keep then behaviour of a dialog (ESC to close, ENTER to submit). --- Changes since v3 - Changed block of code in set_connection_info into a for loop Changes since v2 - Now only contains changing dialo

[Spice-devel] [spicy PATCH 4/7 v4] spicy: Fixed reselecting in recent chooser

2015-06-16 Thread Lukas Venhoda
Recent chooser didn't unselect on loosing focus. Selecting recent connection, then modifying the entries and doubleclicking on the same recent connection caused spicy to connect to address in the entry, instead of the one in recent chooser. Recent chooser now unselects on loosing focus, forcing to

[Spice-devel] [spicy PATCH 6/7 v4] spicy: Changed duplicit lines to for loop

2015-06-16 Thread Lukas Venhoda
Changed piece of code working with fixed size array into a for loop. --- Changes since v3 - New patch --- src/spicy-connect.c | 17 ++--- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/src/spicy-connect.c b/src/spicy-connect.c index c5f1dfb..7834e3a 100644 --- a/src/sp

[Spice-devel] [spicy PATCH 1/7 v4] spicy: Connect dialog moved to its own file

2015-06-16 Thread Lukas Venhoda
Connect dialog from spicy is now in its own file. Renamed connect_dialog to spicy_connect_dialog. Added new file for translation. --- No changes since v3 Changes since v2 - New patch - Reversed order of patches. Now create a module first, modify after. - Renamed the function from connect_dial

[Spice-devel] [spicy PATCH 7/7 v4] spicy: Enable recent chooser on windows

2015-06-16 Thread Lukas Venhoda
With gtk3, recent chooser is working correctly in windows. --- Changes since v3 - New patch --- src/spicy-connect.c | 6 -- src/spicy.c | 4 2 files changed, 10 deletions(-) diff --git a/src/spicy-connect.c b/src/spicy-connect.c index 7834e3a..76675a6 100644 --- a/src/spicy-conn

Re: [Spice-devel] [spicy PATCH 3/5 v3] spicy: Changed the dialog into a window

2015-06-15 Thread Lukas Venhoda
Slight error. > Changes since v2 > - Now only contains changing dialog to window > - UX changes to XML in later patches Should read Changes since v2 - Now only contains changing dialog to window - UX changes in later patches - Original Message - > From: "Lukas Venhoda" > To:

[Spice-devel] [spicy PATCH 1/5 v3] spicy: Connect dialog moved to its own file

2015-06-15 Thread Lukas Venhoda
Connect dialog from spicy is now in its own file. Renamed connect_dialog to spicy_connect_dialog. Added new file for translation. --- Changes since v2 - New patch - Reversed order of patches. Now create a module first, modify after. - Renamed the function from connect_dialog to spicy_connect_d

[Spice-devel] [spicy PATCH 5/5 v3] spicy: Host and port entries are now required

2015-06-15 Thread Lukas Venhoda
Connect button is now non-sensitive when addres entry is empty. Pressing enter will now also NOT connect, when address entry is empty. --- Changes since v2 - New patch - Split from the v2 patch as requested - Changed response type from GtkResponseType to gboolean --- src/spicy-connect.c | 32 ++

[Spice-devel] [spicy PATCH 3/5 v3] spicy: Changed the dialog into a window

2015-06-15 Thread Lukas Venhoda
Changed connect dialog from GtkDialog to GtkWindow. Added the necessary signals and buttons, to keep then behaviour of a dialog (ESC to close, ENTER to submit). --- Changes since v2 - Now only contains changing dialog to window - UX changes to XML in later patches - Changed response type from

[Spice-devel] [spicy PATCH 4/5 v3] spicy: Fixed reselecting in recent chooser

2015-06-15 Thread Lukas Venhoda
Recent chooser didn't unselect on loosing focus. Selecting recent connection, then modifying the entries and doubleclicking on the same recent connection caused spicy to connect to address in the entry, instead of the one in recent chooser. Recent chooser now unselects on loosing focus, forcing to

[Spice-devel] [spicy PATCH 2/5 v3] spicy: Changed response to gboolean

2015-06-15 Thread Lukas Venhoda
spicy_connect_dialog now returns TRUE and FALSE instead of 0 and -1. --- Changes since v2 - New patch --- src/spicy-connect.c | 9 + src/spicy-connect.h | 2 +- src/spicy.c | 6 ++ 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/src/spicy-connect.c b/src/spicy-c

[Spice-devel] [spicy PATCH 0/5 v3] spicy: Rewrite of connect dialog

2015-06-15 Thread Lukas Venhoda
Connect dialog didn't have a parent window. Changed dialog to a window, because spicy creates no window prior to creating the dialog. No parent can be supplied. Moved the "dialog" code to its own module. --- Changes since v2: - Split the 3 patches into 5 - Hopefully this new split makes mor

[Spice-devel] spicy crash with X11 backend

2013-06-23 Thread Edgar
Hi,All, I found 2 scenario that may cause spicy crash with X11 backend, would you please help to check this issue. configure and compile spicy with parameter "--with-gtk=2.0 --with-x11 --with-coroutine=ucontext" install package is: [root@test spice-gtk-0.14]# rpm -qa |grep spice spice-gtk-python

Re: [Spice-devel] Spicy keyboard shortcuts.

2013-06-04 Thread Christophe Fergeau
On Mon, Jun 03, 2013 at 05:07:25PM +0100, Chris Bull wrote: > Hi, > > With the spicy client, there is an ability to press LShift + Ctrl + F12 to > break out of full screen. spicy is not a SPICE client, it's just a test program for the spice-gtk library, remote-viewer (part of the virt-viewer pack

[Spice-devel] Spicy keyboard shortcuts.

2013-06-03 Thread Chris Bull
Hi, With the spicy client, there is an ability to press LShift + Ctrl + F12 to break out of full screen. I would like to suppress this ability for a kiosk type application, I'm experimenting with xmodmaps to remap the keypress to a less "dangerous" one, but was hoping that there might be a way to

[Spice-devel] ??????spicy play the music without voice

2013-05-11 Thread ????????
-- -- ??: "??"; : 2013??5??12??(??) 11:13 ??: "877821264"<877821...@qq.com>; : spicy play the music without voice I use spicy to connect spice server,and play music.Links for the first time, play the music sound; After

Re: [Spice-devel] spicy crash while unplug usb strorage

2012-10-07 Thread Hans de Goede
Hi, I had already seen your bug-report: https://bugs.freedesktop.org/show_bug.cgi?id=55619 And I will reply there *when I've time to look into this*, please be patient. Regards, Hans On 10/06/2012 10:56 AM, 周伟 wrote: spice-gtk version spice-gtk-0.11 usb-redir version 0.4.3 server ubuntu 10

[Spice-devel] spicy crash while unplug usb strorage

2012-10-06 Thread ????
spice-gtk version spice-gtk-0.11 usb-redir version 0.4.3 server ubuntu 10.0.4 server client ubuntu 11.10 alternate 64 bit It can be reproduce,I plug and unplug U storage for about 30 times,and this coredump occured. I guest it crash when logging below is the coredump info. if you use export S

Re: [Spice-devel] spicy

2012-08-29 Thread Christophe Fergeau
On Tue, Aug 28, 2012 at 03:43:00PM +0200, Trebor Forban wrote: > Hello Anthony, > > thanks for your response. > > After trying various ppa's: > > deb http://ppa.launchpad.net/bderzhavets/lib-usbredir86/ubuntu quantal main > deb-src http://ppa.launchpad.net/bderzhavets/lib-usbredir86/ubuntu quant

Re: [Spice-devel] spicy

2012-08-28 Thread Trebor Forban
Hello Anthony, thanks for your response. After trying various ppa's: deb http://ppa.launchpad.net/bderzhavets/lib-usbredir86/ubuntu quantal main deb-src http://ppa.launchpad.net/bderzhavets/lib-usbredir86/ubuntu quantal main to no avail, I decided to follow you advice, and compile remote-viewer

Re: [Spice-devel] spicy

2012-08-27 Thread Anthony James
Trebor, I did some testing and was able to successfully compile virt-viewer-0.5.3 with usb-redirection on a fresh install of Ubuntu 12.04 32-bit. Below are the steps that I used. Note: I chose to install the SPICE stuff to /usr/local/spice A) Install dependencies sudo apt-get install libusb-1.

Re: [Spice-devel] spicy

2012-08-27 Thread Christophe Fergeau
Hey, On Thu, Aug 23, 2012 at 03:13:51PM +0200, Trebor Forban wrote: > wanting to be able to use the integrated spice USB-redirection seems > to incur having to use the spicy client instead of the spicec client. > With the spicec client, I was able to automatically position client > windows with de

Re: [Spice-devel] spicy

2012-08-23 Thread Anthony James
Trebor, Have you tried the latest version of virt-viewer? It supports SPICE USB redirection. I believe spicec is being retired as shown in the feature list at the link below. http://spice-space.org/page/Releases/SpiceZeroPointTwelve Anthony On Thu, Aug 23, 2012 at 12:35 PM, Trebor Forban wro

[Spice-devel] spicy

2012-08-23 Thread Trebor Forban
Hello Spice Developers, wanting to be able to use the integrated spice USB-redirection seems to incur having to use the spicy client instead of the spicec client. With the spicec client, I was able to automatically position client windows with devilspie/xdotool, use xscreensaver and various other

[Spice-devel] spicy

2012-08-23 Thread Trebor Forban
Hello Spice Developers, wanting to be able to use the integrated spice USB-redirection seems to incur having to use the spicy client instead of the spicec client. With the spicec client, I was able to automatically position client windows with devilspie/xdotool, use xscreensaver and various other

Re: [Spice-devel] spicy usbredir with USB mass storage device spend 30~60 seconds

2012-07-09 Thread Hans de Goede
Hi, On 07/08/2012 06:12 AM, Lv Basen wrote: HI all: I have setup a box running spicy with usb redirection, when pulg-in a usb mass storage device( 200GB ) in the box, It shoud spend 60 seconds, then we can found the usb device in virtual machine os. I enabled the debug l

[Spice-devel] spicy usbredir with USB mass storage device spend 30~60 seconds

2012-07-08 Thread Lv Basen
HI all: I have setup a box running spicy with usb redirection, when pulg-in a usb mass storage device( 200GB ) in the box, It shoud spend 60 seconds, then we can found the usb device in virtual machine os. I enabled the debug log with --enable-debug-log=yes when configure libus

Re: [Spice-devel] SPICY with usb redirection webcam

2012-06-28 Thread Hans de Goede
Hi, On 06/28/2012 01:54 AM, Jackson wrote: I use spicy to connect to a VM supporting usb redirection, but there are some problems with usb webcam. Plug in the webcam with usb redirection and then, I open the webcam application (ex: skype or amcap); however, the VM only shows the first view and

Re: [Spice-devel] SPICY with usb redirection webcam

2012-06-28 Thread Dominique Rodrigues
I have done also some tests with redirection of an usb webcam. It worked fine using a centos guest (my host is under debian) but not for a windows guest. In the latter, it even crashed my computer. Regards Dominique Le 28/06/2012 01:54, Jackson a é

[Spice-devel] SPICY with usb redirection webcam

2012-06-28 Thread Jackson
I use spicy to connect to a VM supporting usb redirection, but there are some problems with usb webcam. Plug in the webcam with usb redirection and then, I open the webcam application (ex: skype or amcap); however, the VM only shows the first view and stop running. The client and the VM are alm

Re: [Spice-devel] spicy USB redirection option

2012-04-06 Thread Hans de Goede
Hi, On 03/29/2012 01:38 PM, flooding Controlled wrote: Hi all: Does spicy have the spicy USB redirection option by command line not by GUI.For exmple , I want to load automatically lload the USB device which is plugined into my client. I'm afraid that spicy has no option to specify devi

[Spice-devel] spicy USB redirection option

2012-03-29 Thread flooding Controlled
Hi all: Does spicy have the spicy USB redirection option by command line not by GUI.For exmple , I want to load automatically lload the USB device which is plugined into my client. Thanks a lot! Yours Flooding. ___ Spice-devel mailing list Spice-dev

Re: [Spice-devel] spicy often calls error

2012-03-25 Thread Alon Levy
On Sat, Mar 24, 2012 at 01:09:35PM +0800, flooding Controlled wrote: > Hi all: > My spice server version is 0.10.1 and my spice client is spice-gtk > (0.10). I found that spicy is not very stable , which often calls error > and the vm(instance) is often shutdown. > > for exmple: while I am do

[Spice-devel] spicy often calls error

2012-03-23 Thread flooding Controlled
Hi all: My spice server version is 0.10.1 and my spice client is spice-gtk (0.10). I found that spicy is not very stable , which often calls error and the vm(instance) is often shutdown. for exmple: while I am doing work on WORD(MicroSoft), it often calls as follows: qemu: malloc.c:3795: _int

Re: [Spice-devel] spicy fullscreen escape

2012-03-08 Thread Hans de Goede
Hi, On 03/08/2012 04:02 PM, Julian Robbins wrote: Hello Spice is great !! The only small annoyance is that when using the 'spicy desktop client' 0.7 on Ubuntu linux that i cannot find how to escape from full screen mode after i enter ie when in Windows 7 as a guest I cannot get out of this m

[Spice-devel] spicy fullscreen escape

2012-03-08 Thread Julian Robbins
Hello Spice is great !! The only small annoyance is that when using the 'spicy desktop client' 0.7 on Ubuntu linux that i cannot find how to escape from full screen mode after i enter ie when in Windows 7 as a guest I cannot get out of this mode unless i shutdown Windows !!. Typing in the ful

[Spice-devel] spicy gets stuck (with SASL and wrong password)

2011-11-06 Thread Yaniv Kaul
Hi, I'm trying to run the following: qemu (latest git, with spice from latest git): ./x86_64-softmmu/qemu-system-x86_64 -spice port=6901,disable-ticketing,sasl -k en-us -name XP -boot c -soundhw pcspk -m 1024 -cpu core2duo,+x2apic -smp 2 -balloon none -bios /usr/share/seabios/bios.bin -monitor

[Spice-devel] spicy - how to forward a keypress to window manager in fullscreen

2011-07-28 Thread Emre Erenoglu
Hi, I use spicy for my virtual machines and it works perfectly. I have two monitors, so I enabled two qxl devices and put the windows on two monitors, then fullscreen each of them. So it's like I'm sitting in front of a real computer. However, when I need to go back to the host machine, I need t