Configurar resolucion maxima de pantalla en Linux Ubuntu/Debian
===============================================================
Identificar la resolucion maxima del monitor
$> xrandr
$> cvt 2560 1440
Modeline "2560x1440_60.00" 312.25 2560 2752 3024 3488 1440 1443 1448 1493 -hsync +vsync
$> xrandr --newmode "2560x1440_60.00" 312.25 2560 2752 3024 3488 1440 1443 1448 1493 -hsync +vsync
$> xrandr --addmode HDMI-3 "2560x1440_60.00"
$> xrandr -s 2560x1440
$> vim /home/name_user/.profile
Al final del archivo agregar los comandos de xrandr:
-----------------------------------------------------------
xrandr --newmode "2560x1440_60.00" 312.25 2560 2752 3024 3488 1440 1443 1448 1493 -hsync +vsync
xrandr --addmode HDMI-3 "2560x1440_60.00"
-----------------------------------------------------------
Nota: Si no se aplicar los cambios utilizar este comando:
$> xrandr --output HDMI-3 --mode "2560x1440_60.00"
$> sudo apt install arandr
No hay comentarios:
Publicar un comentario