Xrandr errors. BadName (named color or font does not exist)

ScreenXrandr

Screen Problem Overview


I was successfully using xrandr to extend my desktop in my work place with this little "script".

#!/bin/sh

xrandr --newmode 1920x1080  220.64  1920 2056 2264 2608  1080 1081 1084 1128  -HSync +Vsync
xrandr --addmode VGA 1920x1080
xrandr --output VGA --mode 1920x1080

Everything was going well till one day that magically stop working. When I try to use it. I just get this message.

> X Error of failed request: BadName > (named color or font does not exist)

The laptop display resizes in a strange way, but nothing happens with the extended monitor.

I've restored gnome desktop default config. I changed the font config, I tried with other layouts and monitors, but always occur the same.

Screen Solutions


Solution 1 - Screen

Have you tried using a different name for that mode? I was getting this error and tried using the name "1080p" (e.g. xrandr --newmode "1080p"...) instead of the "1920x1080" name that I usually use and it worked. I'm not sure what's causing the error, as the 1920x1080 mode isn't even listed by xrandr, nor can it be removed via --rmmode, but creating a new mode with a different name seemed to work for me.

Solution 2 - Screen

I had a similar problem, I believe it was because I had already created that setting before (then rebooted). If I skip that stage and go straight to:

$ xrandr --addmode LVDS1 1280x720

in the terminal it does it straight away, maybe we were trying to create something that already exists in our system? If it's doing it on the first try though I can't come up with an explanation, sorry, I'm new to working with ubuntu code, 9.04 worked perfectly, upgrading to 10.10 is a bit more of a headache!

Hope it works for someone else.

Solution 3 - Screen

A late chime in, but try using arandr instead. It may life easier using a visual configuration tool rather than the arcane configuration options of xrandr.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJlbelmonteView Question on Stackoverflow
Solution 1 - ScreenTomView Answer on Stackoverflow
Solution 2 - ScreenDeanView Answer on Stackoverflow
Solution 3 - ScreenSashaView Answer on Stackoverflow