2021-07-26 11:20:50 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2021-07-27 16:53:48 +00:00
|
|
|
/* Default settings; can be overriden by pinentry-dmenu.conf */
|
2021-07-26 11:20:50 +00:00
|
|
|
|
2021-07-27 16:53:48 +00:00
|
|
|
static unsigned int mon = -1;
|
2021-07-28 08:08:24 +00:00
|
|
|
static unsigned int centerwidth = 1024;
|
2021-07-27 08:10:28 +00:00
|
|
|
static unsigned int embedded = 0;
|
2021-07-26 16:30:48 +00:00
|
|
|
static unsigned int lineheight = 22;
|
|
|
|
static unsigned int borderwidth = 2;
|
2021-07-27 16:53:48 +00:00
|
|
|
static unsigned int minpwlen = 32;
|
2021-07-28 11:43:42 +00:00
|
|
|
static unsigned int alphas[SchemeLast][2] = {
|
2021-07-31 08:53:44 +00:00
|
|
|
/* values between 0 (transparent) and 255 (opaque) */
|
|
|
|
/* foreground, background */
|
|
|
|
[SchemePrompt] = { 255, 255 },
|
|
|
|
[SchemeNormal] = { 255, 230 },
|
|
|
|
[SchemeSelect] = { 255, 255 },
|
2021-07-31 12:56:52 +00:00
|
|
|
[SchemeDesc] = { 255, 255 },
|
2021-07-28 11:43:42 +00:00
|
|
|
};
|
2021-07-26 11:20:50 +00:00
|
|
|
|
2021-07-30 18:24:59 +00:00
|
|
|
static const char *position = "center";
|
2021-07-26 11:20:50 +00:00
|
|
|
static const char *fonts[] = {
|
2021-07-31 08:53:44 +00:00
|
|
|
"DejaVuSansMono Nerd Font:pixelsize=16:antialias=true:autohint=true"
|
2021-07-26 11:20:50 +00:00
|
|
|
};
|
|
|
|
static const char *prompt = NULL;
|
2021-07-27 16:53:48 +00:00
|
|
|
static const char *asterisk = "*";
|
|
|
|
static const char *colors[SchemeLast][2] = {
|
2021-07-31 08:53:44 +00:00
|
|
|
/* foreground, background */
|
|
|
|
[SchemePrompt] = { "#cccccc", "#4185d7" },
|
|
|
|
[SchemeNormal] = { "#cccccc", "#000000" },
|
|
|
|
[SchemeSelect] = { "#ffffff", "#4185d7" },
|
2021-07-31 12:56:52 +00:00
|
|
|
[SchemeDesc] = { "#cccccc", "#4185d7" },
|
2021-07-26 11:20:50 +00:00
|
|
|
};
|