Colors + work scratchpad.

This commit is contained in:
Bartek Stalewski 2022-03-07 18:57:13 +01:00
parent a85fe068bd
commit f9fe3327a0
7 changed files with 21 additions and 20 deletions

View file

@ -13,8 +13,8 @@ static const char *prompt = NULL; /* -p option; prompt to the left of
static const char *colors[SchemeLast][2] = {
/* fg bg */
[SchemeNorm] = { "#161616", "#c7c7c7" },
[SchemeSel] = { "#161616", "#00bdff" },
[SchemeOut] = { "#000000", "#00ffff" },
[SchemeSel] = { "#ffffff", "#005577" },
[SchemeOut] = { "#000000", "#005577" },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
static unsigned int lines = 0;