22 lines
713 B
C
22 lines
713 B
C
/* See LICENSE file for copyright and license details. */
|
|
/* Default settings; can be overriden by command line. */
|
|
|
|
static int bottom = 0;
|
|
static int embedded = 0;
|
|
static int minpwlen = 32;
|
|
static int mon = -1;
|
|
static int lineheight = 0;
|
|
static int min_lineheight = 8;
|
|
|
|
static const char *asterisk = "";
|
|
static const char *fonts[] = {
|
|
"FiraCode Nerd Font Mono:pixelsize=14",
|
|
"Noto Color Emoji:pixelsize=14",
|
|
"FontAwesome:pixelsize=14"
|
|
};
|
|
static const char *prompt = "";
|
|
static const char *colors[SchemeLast][4] = {
|
|
[SchemePrompt] = {"#7aa2f7", "#15161E"},
|
|
[SchemeNormal] = {"#7aa2f7", "#15161E"},
|
|
[SchemeSelect] = {"#15161E", "#7aa2f7"},
|
|
[SchemeDesc] = {"#7aa2f7", "#15161E"}};
|