Categorie

Archivio Articoli

Categorie

Commenti recenti

[Linux] Change virtual screen size in xorg.conf

closeQuesto articolo è stato pubblicato 10 anni 6 mesi 13 giorni giorni fa quindi alcuni contenuti o informazioni presenti in esso potrebbero non essere più validi. Questo sito non è responsabile per eventuali errori causati da questo problema.

Linux

 

 

 

 

 

 

 

If when you try to set a dual monitor with xrandr obtain the message:

$ xrandr: screen cannot be larger than widthXheight (desired size mywidthXmyheight)

You can solve creating a new file in:

$ /usr/share/X11/xorg.conf.d/

e.g.:

$ sudo nano /usr/share/X11/xorg.conf.d/50-default-screen.conf

With the following content:

Section "Screen"
     Identifier      "Default Screen"
     SubSection "Display"
            Virtual         4096 4096
     EndSubSection
EndSection

 

Then restarting the session!
Enjoy.

Comments are closed.