Hey,
thanks for the fast answer :D
I compared the /boot/config.txt and the /home/sysop/.kivy/config.ini. Both are nearly identical.
After some tests I found out, that the used windowprovider (sdl2) with special activation in the code:
import os
os.environ['KIVY_WINDOW'] = 'sdl2'
causes the lags. This window provider allows me to use a cursor. I've got a normal window.
The problem is, that I need a real mouse curser. My app is a thin client that should use mouse/keyboard and touchscreen.
Another big issue is the fact that I can't minimize the kivy app. So i can't open another software like a rdp client and use it.
Do you have any ideas for:
- A "real" mouse cursor
- Minimizable Window, that doesn't draw over all
PS: The package "python3-kivy" use pygame as window provider. It looks like pygame is even slower than sdl2.