Swap bg and fg on selection

This commit is contained in:
Alex 2020-05-11 10:59:31 +02:00 committed by Alex Denes
parent 9a20f07bc7
commit 34923852da
Signed by: caskd
GPG Key ID: F92BA85F61F4C173

View File

@ -9,9 +9,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", "#000000" },
[SchemeSel] = { "#eeeeee", "#d01010" },
[SchemeOut] = { "#000000", "#e02020" },
[SchemeNorm] = { "#FFB000", "#000000" },
[SchemeSel] = { "#101010", "#FFCC00" },
[SchemeOut] = { "#000000", "#FFB000" },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
static unsigned int lines = 0;