This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
pinentry-dmenu-custom/config.h

23 lines
723 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[] = {
"NotoSans Nerd Font:size=10:antialias=true",
"Noto Color Emoji:size=10:antialias=true",
"FontAwesome:size=10"
};
static const char *prompt = "";
static const char *colors[SchemeLast][4] = {
[SchemePrompt] = {"#7aa2f7", "#15161E"},
[SchemeNormal] = {"#7aa2f7", "#15161E"},
[SchemeSelect] = {"#15161E", "#7aa2f7"},
[SchemeDesc] = {"#7aa2f7", "#15161E"}};