dotfiles

personal dotfiles
git clone anongit@rnpnr.xyz:dotfiles.git
Log | Files | Refs | Feed | Submodules

pinentry-dmenu-9999 (879B)


      1 /* See LICENSE file for copyright and license details. */
      2 
      3 /* minimum length to use for displaying the pw field */
      4 static int minpwlen = 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 /* adjusts the bars vertical padding */
     13 static const unsigned int padbar = 8;
     14 
     15 /* default X11 font or font set */
     16 static const char *fonts[] = {
     17 	"Go Mono:style=bold:size=14",
     18 	"あんずもじ:style=Regular:size=18",
     19 };
     20 
     21 static const char *prompt = NULL;      /* -p  option; prompt to the left of input field */
     22 static const char *colors[SchemeLast][4] = {
     23 	/*     fg         bg       */
     24 	[SchemePrompt] = { "#a274f2", "#090909" },
     25 	[SchemeNormal] = { "#666666", "#090909" },
     26 	[SchemeSelect] = { "#666666", "#090909" },
     27 	[SchemeDesc]   = { "#666666", "#090909" }
     28 };