all repos — st @ 8f1144edee8f4c9ac54faae2ad522544e9e217fa

st (suckless terminal) config

Make nyancat(1) work. Important release feature!
Christoph Lohmann 20h@r-36.net
commit

8f1144edee8f4c9ac54faae2ad522544e9e217fa

parent

121d9109e8202aaa8df836f2d23922008bdf2c72

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

jump to
M st.cst.c

@@ -1204,7 +1204,7 @@ term.c.attr.bg = attr[i] - 40;

else if(BETWEEN(attr[i], 90, 97)) term.c.attr.fg = attr[i] - 90 + 8; else if(BETWEEN(attr[i], 100, 107)) - term.c.attr.fg = attr[i] - 100 + 8; + term.c.attr.bg = attr[i] - 100 + 8; else fprintf(stderr, "erresc(default): gfx attr %d unknown\n", attr[i]), csidump(); break;