st

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit f0cb7b5b27727423a0ae1933dec31bbb757acf3f
parent 9e84c152b300d9e01845780d94c9e6ff98316f99
Author: mpizzzle <michael.770211@gmail.com>
Date:   Sun, 24 May 2020 18:36:01 +0100

removing letter space, might do a proper patch later

Diffstat:
Mconfig.def.h | 2+-
Mx.c | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -5,7 +5,7 @@ * * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ -static char *font = "Ubuntu Mono:pixelsize=16:antialias=true:autohint=true:style=Bold"; +static char *font = "Ubuntu Mono:pixelsize=16:antialias=true:autohint=true"; static int borderpx = 2; /* diff --git a/x.c b/x.c @@ -1034,7 +1034,7 @@ xloadfonts(char *fontstr, double fontsize) } /* Setting character width and height. */ - win.cw = ceilf(dc.font.width * cwscale) + 1; + win.cw = ceilf(dc.font.width * cwscale); win.ch = ceilf(dc.font.height * chscale); FcPatternDel(pattern, FC_SLANT);