diff options
| author | stkhan <personal@slickd.xyz> | 2022-05-22 10:28:58 +0000 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2022-05-22 10:28:58 +0000 |
| commit | f580f6b064235ce0de0792abc86e719e50f87696 (patch) | |
| tree | 69563c9ce3483beddd4a9065c205410e0d0052fe /dmenu-5.1/config.h | |
| parent | 30e3e653dc7083c4e2f2855ec32f42f5490b8a35 (diff) | |
Updated dmenu, fixed crashing issue
Diffstat (limited to 'dmenu-5.1/config.h')
| -rw-r--r-- | dmenu-5.1/config.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/dmenu-5.1/config.h b/dmenu-5.1/config.h new file mode 100644 index 0000000..2085cc2 --- /dev/null +++ b/dmenu-5.1/config.h @@ -0,0 +1,23 @@ +/* See LICENSE file for copyright and license details. */ +/* Default settings; can be overriden by command line. */ + +static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */ +/* -fn option overrides fonts[0]; default X11 font or font set */ +static const char *fonts[] = { + "Source Code Pro:size=9" +}; +static const char *prompt = NULL; /* -p option; prompt to the left of input field */ +static const char *colors[SchemeLast][2] = { + /* fg bg */ + [SchemeNorm] = { "#bbbbbb", "#222222" }, + [SchemeSel] = { "#eeeeee", "#005577" }, + [SchemeOut] = { "#000000", "#00ffff" }, +}; +/* -l option; if nonzero, dmenu uses vertical list with given number of lines */ +static unsigned int lines = 0; + +/* + * Characters not considered part of a word while deleting words + * for example: " /?\"&[]" + */ +static const char worddelimiters[] = " "; |