Hi,
Here's my fix for tripplescreen under linux
3x 1920x1080 screens
put script in X-Plane 11 dir
if the screens are opening on top of eachother run script again with
./newstarter fix
With regards,
Henri
:~/.local/share/Steam/steamapps/common/X-Plane 11$ more newstarter
#!/bin/bash
numscreens=3
count=0
if [ -z $1 ] ; then
./X-Plane-x86_64 --monitor_bounds=0,0,1920,1080,1920,0,1920,1080,3840,0,1920,1080
while [ $count -lt $numscreens ]; do
sleep 1
count=$( wmctrl -l | grep X-System | wc -l)
done
fi
screencount=1
wmctrl -l | grep X-Syst |awk '{ print $1 }' | while read ; do
wmctrl -i -r "$REPLY" -T "X-System_$screencount"
let screencount=screencount+1
done
wmctrl -r "X-System_1" -e 1,0,0,1920,1080
wmctrl -r "X-System_2" -e 1,1920,0,1920,1080
wmctrl -r "X-System_3" -e 1,3840,0,1920,1080