You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
My setup is dual monitor and I noticed:
When in full session, cassowary tries automatically to go fullscreen but it maps both monitors and the virtual machine's resolution is set as the rectangle containing both displays. The leftmost monitor works but the image is cropped to it's resolution and the rightmost glitches between showing the full image and showing the login wallpaper
When running an app and dragging it to the top to make it fullscreen, the image grows on both screen, in the same way as said before and both displays glitch.
To Reproduce
Launch any app on multiple monitor setup and make it fullscreen or launch full rdp session.
Expected behavior
The app should fill only one display, same for the rdp session (at least until multi-monitor is supported)
Screenshots
This is opening an app, I'm not able to show the full session screenshot as I can't open the hosts screenshot utility when running.
System information:
Cassowary Linux client version: 0.6A
Cassowary windows component version: 0.6A
Linux Distribution: openSUSE Tumbleweed 20230717, KDE Plasma 5.27.6, wayland
Windows/Edition used: Windows 10 Pro
Additional context
Great work on the app!! Thanks a lot for sharing.
The text was updated successfully, but these errors were encountered:
The GUI allows adding extra flags, but not editing predetermined ones:
Solution
1. Check your monitor configuration using xfreerdp /monitor-list.
Example output:
* [0] 1920x1080+1280+0
[1] 1280x1024+0+0
[0] is my primary (right) monitor. [1] is my secondary (left) monitor.
For best results, the left monitor should not have a horizontal/vertical offset (+0+0).
The right monitor should have a horizontal offset equal to the left monitor's width, but no vertical offset (+1280+0).
2. Calculate the "combined" resolution of both monitors. In my case, it's 3200x1080.
3. Start an xfreerdp session manually using different flags:
Flags added: +window-drag (Enable full window drag) +sec-tls (Disable TLS protocol security) /f (Enable fullscreen) /multimon:force (Enable and force multi-monitor mode) /monitors:1,0 (You may want to try /monitors:0,1) /size:3200x1080 (Edit to match your combined resolution)
Flags removed: /span (Span screen over multiple monitors)
Don't forget to fill DESKTOP-NAME, username, password, guest_ip, and path_to_app with your details. Modify any existing Cassowary shortcuts to run this command instead of the python3 call. Cheers.
Describe the bug
My setup is dual monitor and I noticed:
To Reproduce
Launch any app on multiple monitor setup and make it fullscreen or launch full rdp session.
Expected behavior
The app should fill only one display, same for the rdp session (at least until multi-monitor is supported)
Screenshots
This is opening an app, I'm not able to show the full session screenshot as I can't open the hosts screenshot utility when running.
System information:
Additional context
Great work on the app!! Thanks a lot for sharing.
The text was updated successfully, but these errors were encountered: