1
0
mirror of https://github.com/alrayyes/pinentry-dmenu synced 2023-11-14 01:56:34 +00:00
pinentry-dmenu/config.h

20 lines
629 B
C
Raw Normal View History

2019-03-24 17:37:11 +00:00
/* 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 const char *asterisk = "*";
static const char *fonts[] = {
"SauceCodePro Nerd Font Mono:style=Regular:pixelsize=18:antialias=true:autohint=true"
};
static const char *prompt = NULL;
static const char *colors[SchemeLast][4] = {
[SchemePrompt] = { "#bbbbbb", "#222222" },
[SchemeNormal] = { "#bbbbbb", "#222222" },
[SchemeSelect] = { "#eeeeee", "#005577" },
[SchemeDesc] = { "#bbbbbb", "#222222" }
};