Adding bold-is-not-bright patch
This commit is contained in:
parent
5d336c2796
commit
9aefe8e4f7
|
@ -11,7 +11,7 @@ Refer to [https://dwm.suckless.org/](https://st.suckless.org/) for details on th
|
|||
|
||||
### Changelog:
|
||||
|
||||
2019-09-16 - Added alpha and anysize patches
|
||||
2019-09-16 - Added alpha, anysize and bold-is-not-bright patches
|
||||
|
||||
### Patches included:
|
||||
|
||||
|
@ -19,4 +19,8 @@ Refer to [https://dwm.suckless.org/](https://st.suckless.org/) for details on th
|
|||
- adds transparency for the terminal
|
||||
|
||||
- [anysize](https://st.suckless.org/patches/anysize/)
|
||||
- allows st to reize to any pixel size rather than snapping to character width / height
|
||||
- allows st to reize to any pixel size rather than snapping to character width / height
|
||||
|
||||
- [bold-is-not-bright](https://st.suckless.org/patches/bold-is-not-bright/)
|
||||
- by default bold text is rendered with a bold font in the bright variant of the current color
|
||||
- this patch makes bold text rendered simply as bold, leaving the color unaffected
|
|
@ -17,4 +17,10 @@
|
|||
/* This patch allows st to reize to any pixel size rather than snapping to character width/height.
|
||||
* https://st.suckless.org/patches/anysize/
|
||||
*/
|
||||
#define ANYSIZE_PATCH 1
|
||||
#define ANYSIZE_PATCH 1
|
||||
|
||||
/* By default bold text is rendered with a bold font in the bright variant of the current color.
|
||||
* This patch makes bold text rendered simply as bold, leaving the color unaffected.
|
||||
* https://st.suckless.org/patches/bold-is-not-bright/
|
||||
*/
|
||||
#define BOLD_IS_NOT_BRIGHT_PATCH 1
|
2
x.c
2
x.c
|
@ -1383,9 +1383,11 @@ xdrawglyphfontspecs(const XftGlyphFontSpec *specs, Glyph base, int len, int x, i
|
|||
bg = &dc.col[base.bg];
|
||||
}
|
||||
|
||||
#if !BOLD_IS_NOT_BRIGHT_PATCH
|
||||
/* 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];
|
||||
#endif // BOLD_IS_NOT_BRIGHT_PATCH
|
||||
|
||||
if (IS_SET(MODE_REVERSE)) {
|
||||
if (fg == &dc.col[defaultfg]) {
|
||||
|
|
Loading…
Reference in New Issue