Is there a way to mirror a single window on my screens?
I want to mirror just one window between two screens, not the whole monitor.
At the moment I am using Ubuntu 15.10.
Is there a way to mirror a single window on my screens?
I want to mirror just one window between two screens, not the whole monitor.
At the moment I am using Ubuntu 15.10.
You can do this with xpra
:
xpra start :100 --start-child=PROGRAM --bind-tcp=0.0.0.0:10000
xpra attach tcp:localhost:10000
As a bonus, it also works remotely – you can attach this window to X (or even Windows and MacOS!) on a different machine. xpra
is like the console programs screen
or tmux
for X11.
attach
: xpra initialization error: unknown format for display name: localhost:10000
. If I change the attach
command to xpra attach tcp:localhost:10000
it goes further on, but when I navigate with my browser to localhost:10000
I get this message disconnect: invalid packet format, not an xpra client?
. Should I use another program to see the mirrored window?
– marcosh
Jun 01 '16 at 12:21