dwm

fork of dwm
git clone git://popovic.xyz/dwm.git
Log | Files | Refs | README | LICENSE

commit 4c7d7356d689a9fa7b29fca2707cb6d674415739
parent 1449c9b38abecad80d7b02ae6a3d3565881b3c45
Author: miksa234 <milutin@popovic.xyz>
Date:   Sun, 22 Oct 2023 18:22:23 +0100

fix

Diffstat:
Mconfig.def.h | 2+-
Mconfig.h | 2+-
Mdwm | 0
Mdwm.c | 2+-
Mdwm.o | 0
5 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -14,7 +14,7 @@ static int smartgaps = 0; /* 1 means no outer gap when the static const int swallowfloating = 0; /* 1 means swallow floating windows by default */ static int showbar = 1; /* 0 means no bar */ static int topbar = 1; /* 0 means bottom bar */ -static const char *fonts[] = { "terminus:pixelsize=19:antialias=true:autohint=true:spacing=false", "Hack Nerd Font:pixelsize=16"}; +static const char *fonts[] = { "terminus:pixelsize=17:antialias=true:autohint=true:spacing=false", "Hack Nerd Font:pixelsize=16"}; static char normfgcolor[] = "#6c6c93"; static char normbgcolor[] = "#263238"; diff --git a/config.h b/config.h @@ -14,7 +14,7 @@ static int smartgaps = 0; /* 1 means no outer gap when the static const int swallowfloating = 0; /* 1 means swallow floating windows by default */ static int showbar = 1; /* 0 means no bar */ static int topbar = 1; /* 0 means bottom bar */ -static const char *fonts[] = { "terminus:pixelsize=19:antialias=true:autohint=true:spacing=false", "Hack Nerd Font:pixelsize=16"}; +static const char *fonts[] = { "terminus:pixelsize=17:antialias=true:autohint=true:spacing=false", "Hack Nerd Font:pixelsize=16"}; static char normfgcolor[] = "#6c6c93"; static char normbgcolor[] = "#263238"; diff --git a/dwm b/dwm Binary files differ. diff --git a/dwm.c b/dwm.c @@ -906,7 +906,7 @@ drawbar(Monitor *m) drw_rect(drw, x + boxs, boxs, boxw, boxw, m->sel->isfixed, 0); } else { drw_setscheme(drw, scheme[SchemeNorm]); - //drw_rect(drw, x, 0, w, bh, 1, 1); + drw_rect(drw, x, 0, w, bh, 1, 1); } } drw_map(drw, m->barwin, 0, 0, m->ww, bh); diff --git a/dwm.o b/dwm.o Binary files differ.