From: Skullheadx Date: Fri, 1 May 2026 12:59:12 +0000 (-0400) Subject: update config for fuzzymatch X-Git-Url: http://git.skullheadx.com/nixos/static/life/index.html?a=commitdiff_plain;ds=inline;p=dmenu.git update config for fuzzymatch --- diff --git a/config.h b/config.h index 97be685..2a03242 100644 --- a/config.h +++ b/config.h @@ -2,6 +2,7 @@ /* 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 */ /* -fn option overrides fonts[0]; default X11 font or font set */ static const char *fonts[] = { "monospace:size=16" @@ -11,6 +12,8 @@ static const char *colors[SchemeLast][2] = { /* fg bg */ [SchemeNorm] = { "#bbbbbb", "#222222" }, [SchemeSel] = { "#eeeeee", "#005577" }, + [SchemeSelHighlight] = { "#ffc978", "#005577" }, + [SchemeNormHighlight] = { "#ffc978", "#222222" }, [SchemeOut] = { "#000000", "#00ffff" }, }; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */