diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2026-02-04 14:33:05 -0800 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2026-02-04 14:33:05 -0800 |
| commit | 72aa4910006b9d2343b748ea15f587ceb8857af5 (patch) | |
| tree | 47687d99b378b1ba7fa41bd58e47b66dae2712ee /src/dmenu/dmenu-5.4/config.h | |
| parent | 90ebb61d9352ce5fbc04588231a8408097e0dfac (diff) | |
suckless includes
Diffstat (limited to 'src/dmenu/dmenu-5.4/config.h')
| -rw-r--r-- | src/dmenu/dmenu-5.4/config.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/dmenu/dmenu-5.4/config.h b/src/dmenu/dmenu-5.4/config.h new file mode 100644 index 0000000..1edb647 --- /dev/null +++ b/src/dmenu/dmenu-5.4/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[] = { + "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] = { "#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[] = " "; |
