st

Suckless' st with my personal patches
git clone https://git.instinctive.eu/st.git
Log | Files | Refs | README | LICENSE

commit a1c24d0c82e4af05bcb290cbe86216452ebf1faa
parent 15e157860a0659f48f994b6655f6f02c8e84bcd4
Author: Natasha Kerensikova <natacha@instinctive.eu>
Date:   Sat, 10 Aug 2024 15:41:32 +0200

[nat] bold is not bright

Diffstat:
Mx.c | 4----
1 file changed, 0 insertions(+), 4 deletions(-)

diff --git a/x.c b/x.c @@ -1419,10 +1419,6 @@ xdrawglyphfontspecs(const XftGlyphFontSpec *specs, Glyph base, int len, int x, i bg = &dc.col[base.bg]; } - /* Change basic system colors [0-7] to bright system colors [8-15] */ - if ((base.mode & ATTR_BOLD_FAINT) == ATTR_BOLD && BETWEEN(base.fg, 0, 7)) - fg = &dc.col[base.fg + 8]; - if (IS_SET(MODE_REVERSE)) { if (fg == &dc.col[defaultfg]) { fg = &dc.col[defaultbg];