I'd like to use i3 on my Windows 10 Linux subsystem with two monitors.
With:
vcxsrv.exe :1 -nodecoration -wgl -multimonitors -screen 0 3840x1160
I can create one large Window that spans over my two monitors. This configuration works with i3, however i3 recognizes it correctly as one single screen with the drawback that sometimes windows are cut in half when the span over both monitors.
I'd like to use i3 with two separate screens, like this:
vcxsrv.exe :1 -nodecoration -wgl -screen 0 @1 -screen 1 @2
However, I can run i3 either on screen 0 (export DISPLAY=:1
) or on screen 1 (export DISPLAY=:1.1
) but not on both on the same time.
Maybe it has something todo with xrandr since it does not recognize my configuration:
xrandr -q
:
xrandr: Failed to get size of gamma for output default
Screen 1: minimum 0 x 0, current 1920 x 1160, maximum 32768 x 32768
default connected primary 1920x1160+0+0 0mm x 0mm
1920x1160 0.0*
How can I use both separate screens with i3?