Skip to main content
Topic solved
This topic has been marked as solved and requires no further attention.
Topic: [SOLVED] Urxvt shows some charecters as a box (Read 333 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

[SOLVED] Urxvt shows some charecters as a box

Hello everyone,
I’m facing an issue with Urxvt where some characters are displayed as a box instead of their proper rendering. I’d appreciate any help with resolving this problem. Below is some parts of my .Xresources:

Code: [Select]
!! URxvt Appearance
URxvt.font: xft:CaskaydiaCove NFM:style=Regular:size=10
URxvt.boldFont: xft:CaskaydiaCove  NFM:style=Bold:size=10
URxvt.italicFont: xft:CaskaydiaCove  NFM:style=Italic:size=10
URxvt.boldItalicfont: xft:CaskaydiaCove  NFM:style=Bold Italic:size=10
URxvt.letterSpace: 0
URxvt.lineSpace: 0
URxvt.geometry: 92x26
URxvt.internalBorder: 0
URxvt.cursorBlink: true
URxvt.cursorUnderline: false
URxvt.saveline: 4096
URxvt.scrollBar: false
URxvt.scrollBar_right: false
URxvt.urgentOnBell: true
URxvt.depth: 0
URxvt.iso14755: false
URxvt.xft.rgba: rgb
URxvt.xft.antialias: true

 

Re: Urxvt shows some charecters as a box

Reply #1
This fixed the issue:
Code: [Select]
!! URxvt Appearance
URxvt.font: xft:CaskaydiaCove NFM:style=Regular:size=10, \
xft:unifont:style=Medium:antialias=false
URxvt.boldFont: xft:CaskaydiaCove  NFM:style=Bold:size=10, \
xft:unifont:style=Medium:antialias=false
URxvt.italicFont: xft:CaskaydiaCove  NFM:style=Italic:size=10, \
xft:unifont:style=Medium:antialias=false
URxvt.boldItalicfont: xft:CaskaydiaCove  NFM:style=Bold Italic:size=10, \
xft:unifont:style=Medium:antialias=false