2

If I try to set monitor to 1920x1080 but I lose the the some of the screen. Under windows my monitor is resized to 1804x1014 to fit the whole screen.

How do I tell Ubuntu to use 1804x1014 resolution?

thanks

Maythux
  • 84,289
Darby Gallagher
  • 89
  • 1
  • 1
  • 6

1 Answers1

2

Use gtf to create a mode line

gtf 1804 1014 59.9

Add new mode using xrandr

 xrandr --newmode "1804x1014_59.90"  151.95  1808 1920 2112 2416  1014 1015 1018 1050  -HSync +Vsync

Add this newly added mode

 xrandr --addmode VGA 1804x1014_59.90

Choose the new mode

xrandr --output VGA --mode 1804x1014_59.90

TO MAKE THE CHANGES PERSISTENT

sudo gedit /etc/X11/xorg.conf

MAKE SURE YOU ADD YOUR NEW RESOLUTION TO THE MODES LINE

Modes "..." "1804x1014" "...."
Maythux
  • 84,289