Jeremy
Jeremy

Reputation: 443

Multiple monitors with Kivy

I'm looking at using Kivy to create a program that needs to display a window on each monitor, is there a way to accomplish this? I'd also prefer not to have a single window spanning across.

If not, is there another (good looking, windows/linux) GUI toolkit that can accomplish this?

Upvotes: 5

Views: 1864

Answers (1)

qua-non
qua-non

Reputation: 4162

You can have two separate windows running two separate kivy apps controlling/communicating with each other via osc/twisted/... However one "App" instance is only limited to one App window for that process. It can launch another process(subprocess.popen) which has a new window though.

Upvotes: 8

Related Questions