Add gruvbox patch

This commit is contained in:
2024-06-03 11:02:01 +01:00
parent c7e3c4c448
commit ac2925e3ce
4 changed files with 32 additions and 23 deletions

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", "#222222" },
[SchemeSel] = { "#eeeeee", "#005577" },
[SchemeOut] = { "#000000", "#00ffff" },
[SchemeNorm] = { "#ebdbb2", "#282828" },
[SchemeSel] = { "#ebdbb2", "#98971a" },
[SchemeOut] = { "#ebdbb2", "#8ec07c" },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
static unsigned int lines = 0;