25 lines
692 B
C
25 lines
692 B
C
/* See LICENSE file for copyright and license details. */
|
|
|
|
/* minimum length to use for displaying the pw field */
|
|
static int minpwflen = 16;
|
|
|
|
/* character to be used as a replacement for typed characters */
|
|
static const char *asterisk = "*";
|
|
|
|
/* if 0, pinentry-dmenu appears at bottom */
|
|
static int topbar = 1;
|
|
|
|
/* default X11 font or font set */
|
|
static const char *fonts[] = {
|
|
"monospace:size=10"
|
|
};
|
|
|
|
static const char *prompt = NULL;
|
|
static const char *colors[SchemeLast][2] = {
|
|
/* fg bg */
|
|
[SchemePrompt] = { "#bbbbbb", "#222222" },
|
|
[SchemeNorm] = { "#bbbbbb", "#222222" },
|
|
[SchemeSel] = { "#eeeeee", "#005577" },
|
|
[SchemeDesc] = { "#bbbbbb", "#222222" }
|
|
};
|