all repos — st @ c631e9bb917ec268463b3f1f331b286c43a6bd0b

st (suckless terminal) config

Make it possible to use the corefont font description too. It is not very

useful, but easy to implement.
Christoph Lohmann 20h@r-36.net
commit

c631e9bb917ec268463b3f1f331b286c43a6bd0b

parent

393825f9f8a23dfcdfda5220aa8029e9356fa15b

1 files changed, 6 insertions(+), 1 deletions(-)

jump to
M st.cst.c

@@ -2226,7 +2226,12 @@ FcPattern *pattern;

FcResult result; double fontval; - pattern = FcNameParse((FcChar8 *)fontstr); + if(fontstr[0] == '-') { + pattern = XftXlfdParse(fontstr, False, False); + } else { + pattern = FcNameParse((FcChar8 *)fontstr); + } + if(!pattern) die("st: can't open font %s\n", fontstr);