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?