diff options
| author | ozpv <39195175+ozpv@users.noreply.github.com> | 2021-08-12 18:50:54 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-12 18:50:54 -0500 |
| commit | 5aff88b84f06e15c528b3dc600c9dc108a75415d (patch) | |
| tree | a848e75e7d81882dce3d4c520f0d63135c3ba801 /config.h | |
| parent | 698633c1b18079677e4da55f5c88487188041d0a (diff) | |
Add files via upload
Diffstat (limited to 'config.h')
| -rw-r--r-- | config.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/config.h b/config.h new file mode 100644 index 0000000..8f9ab84 --- /dev/null +++ b/config.h @@ -0,0 +1,26 @@ +/* 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[] = { + "monospace:size=10" +}; +static const char *prompt = NULL; /* -p option; prompt to the left of input field */ +static const char *colors[SchemeLast][2] = { + /* fg bg */ + [SchemeNorm] = { "#ebdbb2", "#282828" }, + [SchemeSel] = { "#ebdbb2", "#928374" }, + [SchemeOut] = { "#ebdbb2", "#8ec07c" }, +}; +/* -l option; if nonzero, dmenu uses vertical list with given number of lines */ +static unsigned int lines = 0; +/* -h option; minimum height of a menu line */ +static unsigned int lineheight = 0; +static unsigned int min_lineheight = 8; + +/* + * Characters not considered part of a word while deleting words + * for example: " /?\"&[]" + */ +static const char worddelimiters[] = " "; |
