commit 5c6516042c8c42bba782808d3ca51e6a8d9aa9d3
parent 416af51e4df22f336dafca8b21c7c196e68f300d
Author: Hayden Hamilton <hayden@haydenvh.com>
Date: Sun, 5 Jan 2020 01:35:09 +0000
Bold
Diffstat:
3 files changed, 1 insertion(+), 5 deletions(-)
diff --git a/config.h b/config.h
@@ -63,7 +63,7 @@ static unsigned int cursorthickness = 2;
static int bellvolume = 0;
/* default TERM value */
-char *termname = "rxvt-unicode-256color";
+char *termname = "st-256color";
/*
* spaces per tab
diff --git a/x.c b/x.c
@@ -1340,10 +1340,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];
diff --git a/x.c b/x.c.orig