soapman
You're getting the error because urxvt
can't find the 9x15
font alias, even though 6x13
works. This usually means the 9x15
font isn't installed, registered, or properly mapped in the X font path.
Run this to check if 9x15
is available: xlsfonts | grep 9x15
If nothing is returned, the font is missing from the current font path.
Make sure the required fonts are installed: sudo pkg install xorg-fonts-miscbitmaps font-misc-misc
Then add the font path:
xset +fp /usr/local/share/fonts/misc
xset fp rehash
Try running urxvt with the full font name:
urxvt -fn "-misc-fixed-medium-r-normal--15-140-75-75-c-90-iso10646-1"
If that works, the issue is just that the 9x15
alias isn't resolving. Add the full font to your .Xresources
:
URxvt.font: -misc-fixed-medium-r-normal--15-140-75-75-c-90-iso10646-1
Then reload with: xrdb -merge ~/.Xresources