On Thursday 28 January 2010 16:05:58 Mihai Donțu wrote:
Hi,
I use wine to run cl.exe and build some dll-s. However, each time make invokes wine, my mouse short-jumps from one position to another or stops responding for a brief period of time. Is there any way to tell wine to skip any GUI initialization or to not touch the mouse?
Mm, one coffee later, I seem to have answered my own question:
$ cat `which cl` #!/bin/sh
unset DISPLAY exec wine "${HOME}/apps/vs64/bin/cl.exe" "${@}"
Seems to do the trick. I apologize for the noise. :)