-
Hi all, Is there any easy way to disable showing the mouse cursor using appropriate parameters from the Cartesian config? I have a vm like
so I wonder if there is a VNC option (none I could find) or a change in the choice of USB tablet or perhaps change in the choice of cirrus-vga that could help me eliminate the mouse pointer from the display buffer. @YongxueHong @luckyh Do you happen to have needed something like this in the past? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @pevogam , there are two mouse cursors where one is on the host and the other is on the guest, may I know which is the one you're interested in? Assumed that you were asking about the one on the host, it should be controlled by the VNC client and showed up on the window per the tool's manner. As Qemu just held the VNC server end, I don't think there would be some room for the tweaking if I understood that correctly. While if you meant the other, the guest os should be in charge of that, respecting some desktop settings or maybe even some device hardware settings, which was fully depend on the environment you used. |
Beta Was this translation helpful? Give feedback.
-
What could modify and in my case remove the mouse cursor was to change the VGA hardware: password = test1234
- vga = cirrus
+ vga = virtio
shell_prompt = "^\[.*\][\#\$]\s*$"
username = root Not sure if VirtIO actually provides more control over this behavior but it did the trick for me, if there are any better options let me know. |
Beta Was this translation helpful? Give feedback.
What could modify and in my case remove the mouse cursor was to change the VGA hardware:
Not sure if VirtIO actually provides more control over this behavior but it did the trick for me, if there are any better options let me know.