daybreak.nvim/dmenu/config.h

19 lines
676 B
C

/* .. */
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
/* -fn option overrides fonts[0]; default X11 font or font set */
static const char *fonts[] = {
"DejaVuSansM Nerd Font:size=10:style=Bold"
};
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][2] = {
/* fg bg */
[SchemeNorm] = { "#fef9cd", "#270e05" },
[SchemeSel] = { "#ffffff", "#97aee4" },
[SchemeOut] = { "#fef9cd", "#94b5ea" },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
static unsigned int lines = 0;
/* .. */