QT DESKTOP APP AND DUAL SCREEN
-
Hi Dears,
I Have Two apps created with qt 5.12.12, I have two displays connected to my pc with HDMI and VGA I want to open APP1 in display 1 fullscreen and APP2 in display 2 full screen too,
I have searched in all forums don't forget any solution.I have try with ./Queu_botton --geometry=12x12+1921+200 and ./Queu_botton --geometry=12x12+0+200 display only in primary display
but if I execute de same command with gnome-terminal for example is displayed in two display
please helps me
-
I have try with ./Queu_botton --geometry=12x12+1921+200 and ./Queu_botton --geometry=12x12+0+200 display only in primary display
Where did you try this and what did you get? You are asking for the window geometry to be a 12 pixel square, which seem almost certain to be ignored by the window manager.
-
I have try with ./Queu_botton --geometry=12x12+1921+200 and ./Queu_botton --geometry=12x12+0+200 display only in primary display
Where did you try this and what did you get? You are asking for the window geometry to be a 12 pixel square, which seem almost certain to be ignored by the window manager.
@ChrisW67 hi thanks for response i have try this in terminal command line is fine for all app gnome but not for QT APP
-
The standard X11 geometry argument has a single hyphen and not normally any "=" sign between the parameter name and the parameter value. You can see this here.
./Queu_botton -geometry 12x12+1921+200 & ./Queu_botton -geometry 12x12+0+200 &
You are asking for a 12 by 12 pixel size, which is almost certainly nonsensical and may be ignored.
-
The standard X11 geometry argument has a single hyphen and not normally any "=" sign between the parameter name and the parameter value. You can see this here.
./Queu_botton -geometry 12x12+1921+200 & ./Queu_botton -geometry 12x12+0+200 &
You are asking for a 12 by 12 pixel size, which is almost certainly nonsensical and may be ignored.
@ChrisW67 thank you is fine