personal config

This commit is contained in:
λmolinae 2025-06-22 22:21:48 -06:00
parent af6440da8f
commit 5a68bfbec1
7 changed files with 68 additions and 6 deletions

22
config.h Normal file
View file

@ -0,0 +1,22 @@
/* 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[] = " ";