Con
$ xrand
conozco las resoluciones
PILLARBOX
ESTE ES EL COMANDO PARA AJUSTAR LA PANTALLA IZQUIERDA A LA PANTALLA DERECHA (Pantalla de baja resoluciĆ³n se ajusta a pantalla de alta resoluciĆ³n)
xrandr --output VGA-1 --mode 1680x1050
xrandr --output DP-1 --mode 1600x900 --same-as VGA-1 --scale 1.15x1.167
El 1.15 sale de El 1.167 sale de 1050/900
434
-------------- = 1.15
236*473
---------
296
xrandr --output DP-1 --mode 1600x900
xrandr --output VGA-1 --mode 1680x1050 --same-as DP-1 --scale 0.95x1
0.95 = 1600/1680x1050
1 -> ya que no hay que escalar
C401:
Televisor:
xrandr --output HDMI-1 --mode 1920x1080
xrandr --output HDMI-2 --mode 1440x900 --same-as HDMI-1 --scale 1.33x1.2
1920/1440 = 1.33
1080/900 = 1.2
Proyector:
xrandr --output HDMI-1 --mode 1920x1200
xrandr --output HDMI-2 --mode 1440x900 --same-as HDMI-1 --scale 1.33x1.33