Multiple Monitors with Kivy

I am looking at using Kivy to create a program that should display a window on each monitor, is there any way to do this? I would also prefer not a single window to cover.

If not, is there another (beautiful, windowed / linux) GUI toolkit that can do this?

+5
source share
2 answers

You can have two separate windows in which two separate kivy applications are running that control / share with each other using osc / twisted / ... However, one instance of the "App" is limited to only one application window for this process. It can start another process (subprocess.popen), which has a new window.

+8

//...? ?

0

Source: https://habr.com/ru/post/1537255/


All Articles