Problem solved, maybe help others. Thanks ChrisW67 for ideas. Need to read manual properly

I've check again configuration and code and following is working fine:

/usr/bin/songPresentation -qws -display "multi: LinuxFb:/dev/fb0:0 LinuxFb:/dev/fb1ffset=656,0:1 :0" -nomouse

and in code change (get geometry of first screen and mode second widget to that screen correctly).

Qt Code:
  1. QRect rect = widget->screenGeometry(0);
  2. qDebug() << "Move to:" << rect.width() << ":" << rect.y();
  3. w2.move(rect.width(), 0);
To copy to clipboard, switch view to plain text mode