diff options
| author | terminaldweller <devi@terminaldweller.com> | 2025-12-01 08:15:52 +0000 |
|---|---|---|
| committer | terminaldweller <devi@terminaldweller.com> | 2025-12-01 08:15:52 +0000 |
| commit | 7a37283133e84bb778c3a05c2fc6a6bdf353fca2 (patch) | |
| tree | c41b4d6a720206c82214528f1a878dad6e09cad9 /config.def.h | |
| parent | added the allow color patch (diff) | |
| download | dmenu-7a37283133e84bb778c3a05c2fc6a6bdf353fca2.tar.gz dmenu-7a37283133e84bb778c3a05c2fc6a6bdf353fca2.zip | |
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 7 |
1 files changed, 5 insertions, 2 deletions
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; |
