added highlight config changes
This commit is contained in:
parent
46283b1fdd
commit
6d926e2f98
@ -11,10 +11,13 @@ static const char *prompt =
|
|||||||
NULL; /* -p option; prompt to the left of input field */
|
NULL; /* -p option; prompt to the left of input field */
|
||||||
|
|
||||||
static const char *colors[SchemeLast][2] = {
|
static const char *colors[SchemeLast][2] = {
|
||||||
/* fg bg */
|
/* fg bg */
|
||||||
[SchemeNorm] = {"#D5C4A1", "#262626"},
|
[SchemeNorm] = {"#D5C4A1", "#262626"},
|
||||||
[SchemeSel] = {"#262626", "#FE8019"},
|
[SchemeSel] = {"#262626", "#FE8019"},
|
||||||
|
[SchemeSelHighlight] = { "#ffc978", "#005577" },
|
||||||
|
[SchemeNormHighlight] = { "#ffc978", "#222222" },
|
||||||
[SchemeOut] = {"#000000", "#00ffff"},
|
[SchemeOut] = {"#000000", "#00ffff"},
|
||||||
|
[SchemeOutHighlight] = { "#ffc978", "#00ffff" },
|
||||||
};
|
};
|
||||||
|
|
||||||
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
|
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
|
||||||
@ -29,3 +32,4 @@ static unsigned int min_lineheight = 8;
|
|||||||
* for example: " /?\"&[]"
|
* for example: " /?\"&[]"
|
||||||
*/
|
*/
|
||||||
static const char worddelimiters[] = " ";
|
static const char worddelimiters[] = " ";
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user