dmenu

my build of dmenu
git clone git://git.ckyln.com/~cem/dmenu.git
Log | Files | Refs | README | LICENSE

commit 17e0997ba0c5b89cba5095c1b7be5895c9409b15
parent 4f52b045f43f209e8ced3bd7e9f2a119d9ea76eb
Author: Cem Keylan <cem@ckyln.com>
Date:   Mon, 21 Sep 2020 12:38:09 +0300

Change default colorscheme

Diffstat:
Mconfig.def.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -11,8 +11,8 @@ static const char *fonts[] = { static const char *prompt = NULL; /* -p option; prompt to the left of input field */ static const char *colors[SchemeLast][2] = { /* fg bg */ - [SchemeNorm] = { "#bbbbbb", "#222222" }, - [SchemeSel] = { "#eeeeee", "#005577" }, + [SchemeNorm] = { "#bfbfbf", "#282a36" }, + [SchemeSel] = { "#f8f8f2", "#9d638a" }, [SchemeOut] = { "#000000", "#00ffff" }, }; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */