pinentry-dmenu

a pinentry program based on dmenu
git clone anongit@rnpnr.xyz:pinentry-dmenu.git
Log | Files | Refs | Feed | README | LICENSE

config.def.h (692B)


      1 /* See LICENSE file for copyright and license details. */
      2 
      3 /* minimum length to use for displaying the pw field */
      4 static int minpwflen = 16;
      5 
      6 /* character to be used as a replacement for typed characters */
      7 static const char *asterisk = "*";
      8 
      9 /* if 0, pinentry-dmenu appears at bottom */
     10 static int topbar = 1;
     11 
     12 /* default X11 font or font set */
     13 static const char *fonts[] = {
     14 	"monospace:size=10"
     15 };
     16 
     17 static const char *prompt = NULL;
     18 static const char *colors[SchemeLast][2] = {
     19 	/*     fg         bg       */
     20 	[SchemePrompt] = { "#bbbbbb", "#222222" },
     21 	[SchemeNorm]   = { "#bbbbbb", "#222222" },
     22 	[SchemeSel]    = { "#eeeeee", "#005577" },
     23 	[SchemeDesc]   = { "#bbbbbb", "#222222" }
     24 };