I am trying to setup ubuntu properly on ultrawide monitor.
What have I done so far:
I have run:
xrandr
and found out that my connected monitor is
HDMI-0
:HDMI-0 connected 1920x1080+258+0 (normal left inverted right x axis y axis) 797mm x 333mm 1920x1080 60.00* 50.00 59.94 1680x1050 59.88 1600x900 60.00 ...
Then I have run:
gtf 3440 1440 60
to find my
Modeline
for the3440x1440
resolution that I want is and got this:# 3440x1440 @ 60.00 Hz (GTF) hsync: 89.40 kHz; pclk: 419.11 MHz Modeline "3440x1440_60.00" 419.11 3440 3688 4064 4688 1440 1441 1444 1490 -HSync +Vsync
Next is to add that new mode:
xrandr --newmode MODELINE GOES HERE
which is in my case:
xrandr --newmode "3440x1440_60.00" 419.11 3440 3688 4064 4688 1440 1441 1444 1490 -HSync +Vsync
Then I added the mod with:
xrandr --addmode HDMI-0 3440x1440_60
Now, when I go to displays, I can find that mod on my ultrawide monitor
After that I have run:
xrandr --output HDMI-0 --mode 3440x1440_60
and the monitor goes black, and I have to blindly type previous resolution to get it back.
The same happens if I select it from the Displays settings.
I am using Asus Laptop model a54h
Where is my mistake?