posthum4n's Posts

What a farce! I'm sorry to say they won't get back at you...
I'm running a hacky Python script in the guest VM which for me solves the key input delay in the Linux guest VM running on a Linux host, but does make the mouse wiggle slightly in the VM. pip instal... See more...
I'm running a hacky Python script in the guest VM which for me solves the key input delay in the Linux guest VM running on a Linux host, but does make the mouse wiggle slightly in the VM. pip install pyautogui   # thanksvmware.py import pyautogui pyautogui.FAILSAFE = False while 1 == 1: pyautogui.moveRel(1, 0, duration = 0) pyautogui.moveRel(-1, 0, duration = 0)     Also tried simulating keypresses (like media keys), but haven't found something that works better than this script.  It's really incredibly sad VMWare is ignoring this, are they using their own software?
Another thing I've noticed is that the keyboard input lag in the VM guest is not happening as long as I'm moving the mouse.