/* See LICENSE file for copyright and license details. */ /* Default settings; can be overriden by command line. */ static int top = 1; /* -b option; if 0, appear at bottom */ static const char *fonts[] = { "Inconsolata:size=14" }; /* -f option overrides fonts[0] */ static const char *prompt = NULL; /* -p option; prompt to the left of input field */ #include "/home/amolinae/.cache/wal/colors-wal-mew.h" /* -m option; if provided, use that output instead of default output */ static const char *output_name = NULL; /* -l option; if nonzero, use vertical list with given number of lines */ static unsigned int lines = 0; /* -p option; display input as asterisks */ static int passwd = 0; /* * Characters not considered part of a word while deleting words * for example: " /?\"&[]" */ static const char worddelimiters[] = " ";