11

I want to disable the bold font in my urxvt config (.Xresources). xterm has the option allowBoldFonts. Is there a similar option for urxvt? I can't find anything similar.

Rufo El Magufo
  • 3,186
  • 2
  • 22
  • 35

2 Answers2

16

According to the manual, setting URxvt.boldFont to empty will disable the bold font, and uses regular font instead. This is the preferred way I think.

URxvt.boldFont:
slm
  • 363,520
  • 117
  • 767
  • 871
Lpb612
  • 161
  • 1
  • 2
9

You can effectively disable bold fonts by just applying the same font string for both urxvt's regular and bold fonts in .Xresources, for example:

URxvt.font:xft:droid sans mono slashed:size=10.5
URxvt.boldFont:xft:droid sans mono slashed:size=10.5
jasonwryan
  • 71,734
  • 34
  • 193
  • 226