23 lines
690 B
C
23 lines
690 B
C
/* See LICENSE file for copyright and license details. */
|
|
/* Default settings; can be overriden by command line. */
|
|
|
|
static int topbar = 1;
|
|
|
|
static const char *fonts[] = {
|
|
"scientifica:size=16:antialias=true"
|
|
};
|
|
static const char *prompt = NULL;
|
|
|
|
/* Gruvbox Material Hard */
|
|
static const char *colors[SchemeLast][2] = {
|
|
/* fg bg */
|
|
[SchemeNorm] = { "#d4be98", "#1d2021" },
|
|
[SchemeSel] = { "#1d2021", "#d8a657" },
|
|
[SchemeOut] = { "#1d2021", "#a9b665" },
|
|
};
|
|
|
|
static unsigned int lines = 0;
|
|
static unsigned int lineheight = 22;
|
|
static unsigned int min_lineheight = 8;
|
|
static int fuzzy = 1;
|
|
static const char worddelimiters[] = " ";
|