Docker-OSX icon indicating copy to clipboard operation
Docker-OSX copied to clipboard

An easy way to solve stuck mouse problem

Open Uoghluvm opened this issue 9 months ago • 2 comments

JUST SET YOUR ABSOLUTE MOUSE IN QEMU

commands to do this:

  1. info mice then the return may look like this: Mouse #4: QEMU HID Tablet (absolute) * Mouse #2: QEMU PS/2 Mouse
  2. set the mouse with (absolute) mine is mouse_set 4

DONE Enjoy the smooth cursor!

Uoghluvm avatar Mar 18 '25 19:03 Uoghluvm

how to set?

callmesoul avatar Apr 10 '25 08:04 callmesoul

For anyone else wondering how to do it. Assuming you run Docker-OSX from terminal like this

    --device /dev/kvm \
    -p 50922:10022 \
    -v /tmp/.X11-unix:/tmp/.X11-unix \
    -e "DISPLAY=${DISPLAY:-:0.0}" \
    -e SHORTNAME=catalina \
    -e RAM=7 \
    sickcodes/docker-osx:latest

When the QEMU window shows you just press Enter in the terminal and you should be in the QEMU command prompt indicated by

(qemu) and a cursor next to it. Type in info mice you will get the available mouse and their ID. mouse_set 4 is a command from QEMU console with parameter 4.

gnubash avatar Jun 30 '25 13:06 gnubash