segunda-feira, 3 de agosto de 2015

Second external monitor setup Linux(Fedora) using xrandr

List of commands to setup a second external monitor connected to my notebook in VGA port:


  1. List monitors and modes if the maximum supported version is not on the list of the connected monitor continue to 2, if it is continue with step 4 directly:
    sudo xrandr
  2. Add a new mode:
    sudo xrandr --newmode "1920x1080_60.00" 148.35 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync
  3. Add new mode to the list of available on the second monitor that in this case is DP-1:
    sudo xrandr --addmode DP-1 1920x1080_60.00
  4. Now add the output of the external monitor to the configured mode, to the right of the notebook one in this case:
    sudo xrandr --auto --output DP-1 --mode 1920x1080_60.00 --right-of eDP-0



    Done!

Nenhum comentário:

Postar um comentário