#!/bin/bash

# Configurar pantallas
xrandr --output DP-1 --primary --mode 1280x720 --pos 0x0 --rotate normal
xrandr --output DP-2 --mode 1280x720 --pos 1280x0 --scale 1x1 --rotate normal
xrandr --output DP-3 --mode 1280x720 --pos 1280x0 --scale-from 1280x720 --rotate normal

# Duplicar DP-3 igual que DP-2
xrandr --output DP-3 --same-as DP-2