patch (858B)
1 diff --git a/config.def.h b/config.def.h 2 index 1edb647..12d6527 100644 3 --- a/config.def.h 4 +++ b/config.def.h 5 @@ -4,13 +4,13 @@ 6 static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */ 7 /* -fn option overrides fonts[0]; default X11 font or font set */ 8 static const char *fonts[] = { 9 - "monospace:size=10" 10 + "xft:foundry=dec:family=terminal" 11 }; 12 static const char *prompt = NULL; /* -p option; prompt to the left of input field */ 13 static const char *colors[SchemeLast][2] = { 14 /* fg bg */ 15 - [SchemeNorm] = { "#bbbbbb", "#222222" }, 16 - [SchemeSel] = { "#eeeeee", "#005577" }, 17 + [SchemeNorm] = { "#222222", "#ffffff" }, 18 + [SchemeSel] = { "#ffffff", "#222222" }, 19 [SchemeOut] = { "#000000", "#00ffff" }, 20 }; 21 /* -l option; if nonzero, dmenu uses vertical list with given number of lines */