如何阻止 mplayer 移动鼠标指针?

如何阻止 mplayer 移动鼠标指针?

我注意到 mplayer 每 10 秒移动一次鼠标光标:

ltrace -e '!read,select,vsnprintf,ioctl,XSync,XShmPutImage,malloc,memcpy,free,XNextEvent,XPending,sws_scale_ordered,pp_postprocess,avcodec_decode_video,strcmp,gettimeofday,nanosleep' -p  `pidof mplayer`
XWarpPointer(0x8ce9480, 0x1800002, 0, 0, 0)                                  = 1
XWarpPointer(0x8ce9480, 0x1800002, 0, 0, 0)                                  = 1
...

可能是为了欺骗可能的屏幕保护程序。没有指定-stop-xscreensaver或与鼠标相关的选项。

如何关闭这种行为?

相关内容