mew

fork with password patch and nord colorscheme
git clone https://git.awy.one/mew.git
Log | Files | Refs | README | LICENSE

config.def.h (984B)


      1 /* See LICENSE file for copyright and license details. */
      2 /* Default settings; can be overriden by command line. */
      3 
      4 static int top              = 1;                       /* -b option; if 0, appear at bottom */
      5 static const char *fonts[]  = { "monospace:size=12" }; /* -f option overrides fonts[0] */
      6 static const char *prompt   = NULL;                    /* -p option; prompt to the left of input field */
      7 static uint32_t colors[][2] = {
      8 	/*               fg         bg          */
      9 	[SchemeNorm] = { 0xd8dee9ff, 0x2e3440ff},
     10 	[SchemeSel]  = { 0x2e3440ff, 0xebcb8bff },
     11 	[SchemeOut]  = { 0x000000ff, 0x00ffffff },
     12 };
     13 
     14 /* -m option; if provided, use that output instead of default output */
     15 static const char *output_name = NULL;
     16 
     17 /* -l option; if nonzero, use vertical list with given number of lines */
     18 static unsigned int lines      = 0;
     19 
     20 /*
     21  * Characters not considered part of a word while deleting words
     22  * for example: " /?\"&[]"
     23  */
     24 static const char worddelimiters[] = " ";
     25