From 7a37283133e84bb778c3a05c2fc6a6bdf353fca2 Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Mon, 1 Dec 2025 03:15:52 -0500 Subject: update --- config.def.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'config.def.h') diff --git a/config.def.h b/config.def.h index ce0a2d3..660ad96 100644 --- a/config.def.h +++ b/config.def.h @@ -2,7 +2,9 @@ /* Default settings; can be overriden by command line. */ static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */ -static int fuzzy = 1; /* -F option; if 0, dmenu doesn't use fuzzy matching */ +static const int user_bh = + 5; /* add an defined amount of pixels to the bar height */ +static int fuzzy = 1; /* -F option; if 0, dmenu doesn't use fuzzy matching */ /* -fn option overrides fonts[0]; default X11 font or font set */ static char font[] = "DejaVuSansMono Nerd Font Mono:pixelsize=14;antialias=true;autohint=true"; @@ -24,6 +26,7 @@ static char *colors[SchemeLast][2] = { [SchemeNorm] = {normfgcolor, normbgcolor}, [SchemeSel] = {selfgcolor, selbgcolor}, [SchemeOut] = {"#000000", "#00ffff"}, + [SchemeMid] = {normfgcolor, normbgcolor}, [SchemeSelHighlight] = {"#ffc978", "#005577"}, [SchemeNormHighlight] = {"#ffc978", "#222222"}, }; @@ -50,4 +53,4 @@ ResourcePref resources[] = { }; /* Size of the window border */ -static const unsigned int border_width = 5; +static unsigned int border_width = 5; -- cgit v1.2.3