You are not logged in.

#1 2016-03-23 13:31:43

G-Force
Member
Registered: 2016-03-23
Posts: 2

[SOLVED] Setting refresh rate

Hi all,

Yesterday I've installed Arch on my machine. The installation went well and I understood what was happening. A big change from Ubuntu!

Anyway, I installed all my drivers and everything seems to work. I do have an issue with setting the refresh rate of my monitor. The system defaults to 60Hz at 1080p, but my monitor is a 144Hz monitor.

I know the refresh rate works, because if I execute 'arandr -r 144' the screen switches to 144Hz. However, after a reboot it's back at 60Hz.

I followed this guide in the wiki:
https://wiki.archlinux.org/index.php/Xo … conf_files

I created a /etc/X11/xorg.conf.d/10-monitor.conf file with the following contents:

Section "Monitor"
    Identifier             "Monitor0"
EndSection

Section "Device"
    Identifier             "Device0"
    Driver                 "amdgpu" #Choose the driver used for this monitor
EndSection

Section "Screen"
    Identifier             "Screen0"  #Collapse Monitor and Device section to Screen section
    Device                 "Device0"
    Monitor                "Monitor0"
    DefaultDepth           24 #Choose the depth (16||24)
    SubSection             "Display"
        Depth              24
        Modes              "1920x1800_144.00" #Choose the resolution
    EndSubSection
EndSection

After this, I can't login. After entering my password, the screen becomes black and then reverts to the login screen.

Any ideas how I can handle this issue? Thanks!

Specs:
AMD Radeon R9 380 with AMDGPU drivers
iiyama GB2488HSU-B2 monitor

Last edited by G-Force (2016-03-25 17:18:49)

Offline

#2 2016-03-23 13:56:49

sliz
Member
Registered: 2016-03-21
Posts: 7

Re: [SOLVED] Setting refresh rate

G-Force wrote:

        Modes              "1920x180_144.00" #Choose the resolution

: D

https://wiki.archlinux.org/index.php/Xr … esolutions
https://wiki.archlinux.org/index.php/xr … esolutions

$ cvt 1920 1080 144

Last edited by sliz (2016-03-23 14:22:57)

Offline

#3 2016-03-23 14:20:24

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,723

Re: [SOLVED] Setting refresh rate

@G-Force
You copied example code, to be filled in by your own values, I very much doubt that your monitor is detected as Monitor0.Also follow the posted links for the randr way of configuring X. Also check your X log likely located in ~/.local/share/Xorg.0.log with the free drivers.

Offline

#4 2016-03-23 14:24:04

G-Force
Member
Registered: 2016-03-23
Posts: 2

Re: [SOLVED] Setting refresh rate

sliz wrote:
G-Force wrote:

        Modes              "1920x180_144.00" #Choose the resolution

: D

https://wiki.archlinux.org/index.php/Xr … esolutions
https://wiki.archlinux.org/index.php/xr … esolutions

Whoops, that's a little mistake. I am not on my desktop right now so I took the example code like I did yesterday and filled it in like I did yesterday. I can assure you, this mistake is not present on my desktop. tongue

I will take a look at this documentation tonight. Thanks!

V1del wrote:

@G-Force
You copied example code, to be filled in by your own values, I very much doubt that your monitor is detected as Monitor0.Also follow the posted links for the randr way of configuring X. Also check your X log likely located in ~/.local/share/Xorg.0.log with the free drivers.

I was under the assumption these values didn't really matter. I will take a look at it tonight and will report back, thanks!

EDIT:
It works! Thanks guys, the links for Xrandr were great. I have no idea why I missed it, because I have read parts of the wiki page before.

And V1del, the monitor was DisplayPort-0. smile

Last edited by G-Force (2016-03-23 18:54:03)

Offline

Board footer

Powered by FluxBB