|
|
|
@ -14,9 +14,9 @@ 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] = { "#222222", "#bd93f9" },
|
|
|
|
|
[SchemeOut] = { "#000000", "#00ffff" },
|
|
|
|
|
[SchemeNorm] = { "#ECEFF4", "#2E3440" },
|
|
|
|
|
[SchemeSel] = { "#88C0D0", "#3B4252" },
|
|
|
|
|
[SchemeOut] = { "#00ffff", "#000000" },
|
|
|
|
|
};
|
|
|
|
|
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
|
|
|
|
|
static unsigned int lines = 0;
|
|
|
|
|