1 Commits

Author SHA1 Message Date
6785ee8e34 Added bold-is-not-bright v2019-01-27 patch 2023-06-27 21:58:47 +02:00
2 changed files with 31 additions and 38 deletions

View File

@ -99,24 +99,32 @@ float alpha = 0.8;
/* Terminal colors (16 first used in escape sequence) */ /* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = { static const char *colorname[] = {
/* 8 normal colors */ /* 8 normal colors */
[0] = "#282828", /* hard contrast: #1d2021 / soft contrast: #32302f */ "black",
[1] = "#cc241d", /* red */ "red3",
[2] = "#98971a", /* green */ "green3",
[3] = "#d79921", /* yellow */ "yellow3",
[4] = "#458588", /* blue */ "blue2",
[5] = "#b16286", /* magenta */ "magenta3",
[6] = "#689d6a", /* cyan */ "cyan3",
[7] = "#a89984", /* white */ "gray90",
/* 8 bright colors */ /* 8 bright colors */
[8] = "#928374", /* black */ "gray50",
[9] = "#fb4934", /* red */ "red",
[10] = "#b8bb26", /* green */ "green",
[11] = "#fabd2f", /* yellow */ "yellow",
[12] = "#83a598", /* blue */ "#5c5cff",
[13] = "#d3869b", /* magenta */ "magenta",
[14] = "#8ec07c", /* cyan */ "cyan",
[15] = "#ebdbb2", /* white */ "white",
[255] = 0,
/* more colors can be added after 255 to use with DefaultXX */
"#cccccc",
"#555555",
"gray90", /* default foreground colour */
"black", /* default background colour */
}; };
@ -124,9 +132,9 @@ static const char *colorname[] = {
* Default colors (colorname index) * Default colors (colorname index)
* foreground, background, cursor, reverse cursor * foreground, background, cursor, reverse cursor
*/ */
unsigned int defaultfg = 15; unsigned int defaultfg = 258;
unsigned int defaultbg = 0; unsigned int defaultbg = 259;
unsigned int defaultcs = 15; unsigned int defaultcs = 256;
static unsigned int defaultrcs = 257; static unsigned int defaultrcs = 257;
/* /*

23
x.c
View File

@ -689,8 +689,6 @@ setsel(char *str, Time t)
XSetSelectionOwner(xw.dpy, XA_PRIMARY, xw.win, t); XSetSelectionOwner(xw.dpy, XA_PRIMARY, xw.win, t);
if (XGetSelectionOwner(xw.dpy, XA_PRIMARY) != xw.win) if (XGetSelectionOwner(xw.dpy, XA_PRIMARY) != xw.win)
selclear(); selclear();
xclipcopy();
} }
void void
@ -714,9 +712,7 @@ brelease(XEvent *e)
if (mouseaction(e, 1)) if (mouseaction(e, 1))
return; return;
if (btn == Button3) if (btn == Button1)
selpaste(NULL);
else if (btn == Button1)
mousesel(e, 1); mousesel(e, 1);
} }
@ -1541,7 +1537,6 @@ void
xdrawcursor(int cx, int cy, Glyph g, int ox, int oy, Glyph og) xdrawcursor(int cx, int cy, Glyph g, int ox, int oy, Glyph og)
{ {
Color drawcol; Color drawcol;
XRenderColor colbg;
/* remove the old cursor */ /* remove the old cursor */
if (selected(ox, oy)) if (selected(ox, oy))
@ -1570,21 +1565,11 @@ xdrawcursor(int cx, int cy, Glyph g, int ox, int oy, Glyph og)
if (selected(cx, cy)) { if (selected(cx, cy)) {
g.fg = defaultfg; g.fg = defaultfg;
g.bg = defaultrcs; g.bg = defaultrcs;
} else if (!(og.mode & ATTR_REVERSE)) {
unsigned long col = g.bg;
g.bg = g.fg;
g.fg = col;
}
if (IS_TRUECOL(g.bg)) {
colbg.alpha = 0xffff;
colbg.red = TRUERED(g.bg);
colbg.green = TRUEGREEN(g.bg);
colbg.blue = TRUEBLUE(g.bg);
XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colbg, &drawcol);
} else { } else {
drawcol = dc.col[g.bg]; g.fg = defaultbg;
g.bg = defaultcs;
} }
drawcol = dc.col[g.bg];
} }
/* draw the new one */ /* draw the new one */