16 lines
493 B
C
16 lines
493 B
C
static int minpwlen = 16;
|
|
static const char *asterisk = "";
|
|
static int topbar = 1;
|
|
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"}
|
|
};
|