How to change monitor resolution?

10,693

First find out how the monitor is identified.

cat ~/.config/monitors.xml

That command will print out your monitor's current settings. Find the active display such as HDMI1 for me. Once your have your display figured out, you can change the settings with xrandr.

xrandr --output HDMI1 --mode 1920x1080

That will force my monitor connected to HDMI to be in 1080p.

If you really want to make this with GUI, you could edit monitors.xml with gedit.

gedit ~/.config/monitors.xml

In there you can change the height and width, then reboot.

Share:
10,693

Related videos on Youtube

Richard Rublev
Author by

Richard Rublev

Updated on September 18, 2022

Comments

  • Richard Rublev
    Richard Rublev over 1 year

    I have tried to edit System settings,but it shows builtin display.enter image description here

    My monitor is LG IPS236V,23INCH.

      *-display               
           description: VGA compatible controller
           product: Park [Mobility Radeon HD 5430]
           vendor: Advanced Micro Devices, Inc. [AMD/ATI]
           physical id: 0
           bus info: pci@0000:01:00.0
           version: 00
           width: 64 bits
           clock: 33MHz
           capabilities: pm pciexpress msi vga_controller bus_master cap_list rom
           configuration: driver=fglrx_pci latency=0
           resources: irq:16 memory:e0000000-efffffff memory:fbdc0000-fbddffff ioport:de00(size=256) memory:fbd00000-fbd1ffff
    

    How to solve this?

  • Richard Rublev
    Richard Rublev over 8 years
    cat: /home/mimi/.config/monitors.xml: No such file or directory
  • Richard Rublev
    Richard Rublev over 8 years
    What should I try?