diff options
author | tdro <tdro@users.noreply.github.com> | 2022-03-17 22:09:58 -0400 |
---|---|---|
committer | tdro <tdro@users.noreply.github.com> | 2022-03-17 22:09:58 -0400 |
commit | 9b0be7712e2aae65b459f758a080c56983056021 (patch) | |
tree | 2c17b9cbbf4a45fa4dae611bf48d72ea361e97df /config.def.h | |
parent | 7359d5e8a20073a9e40f92c6ad37d61ed5326859 (diff) | |
download | dmenu-master.tar.gz dmenu-master.tar.bz2 dmenu-master.zip |
In this order;
git apply --verbose patches/fuzzymatch.patch
git apply --verbose patches/highlight.patch
git apply --verbose patches/xresources.patch
git apply --verbose patches/compact.patch
git apply --verbose patches/instantexit.patch
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 1edb647..0103bda 100644 --- a/config.def.h +++ b/config.def.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=10" @@ -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 */ |