diff options
author | zachir <zachir@librem.one> | 2020-11-23 19:04:07 -0600 |
---|---|---|
committer | zachir <zachir@librem.one> | 2020-11-23 19:04:07 -0600 |
commit | ec62eaf734f747384ee97cb1c085f090f0710911 (patch) | |
tree | 630f8e0d4a87dffb6efe23ee9099f6a3ff3a8b3d /config.h | |
parent | d89c8baea541a1e7bfaaeccbfdee0bbc0d1d26de (diff) |
Tidy repo
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/config.h b/config.h new file mode 100644 index 0000000..54e43c8 --- /dev/null +++ b/config.h @@ -0,0 +1,27 @@ +/* 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[] = { + "mononoki:size=10", + "JoyPixels: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] = { "#bbbbbb", "#222222" }, + [SchemeSel] = { "#eeeeee", "#005577" }, + [SchemeSelHighlight] = { "#ffc978", "#005577" }, + [SchemeNormHighlight] = { "#ffc978", "#222222" }, + [SchemeOut] = { "#000000", "#00ffff" }, +}; +/* -l option; if nonzero, dmenu uses vertical list with given number of lines */ +static unsigned int lines = 0; +static unsigned int lineheight = 0; /* -h option; minimum height of a menu line */ + +/* + * Characters not considered part of a word while deleting words + * for example: " /?\"&[]" + */ +static const char worddelimiters[] = " "; |