patch-config.h - pkgsrc-localpatches - leot's pkgsrc LOCALPATCHES
(HTM) hg clone https://bitbucket.org/iamleot/pkgsrc-localpatches
(DIR) Log
(DIR) Files
(DIR) Refs
---
patch-config.h
---
1 --- /dev/null 2018-03-15 11:53:32.363610266 +0100
2 +++ config.h 2018-03-15 11:54:21.317951591 +0100
3 @@ -0,0 +1,23 @@
4 +/* See LICENSE file for copyright and license details. */
5 +/* Default settings; can be overriden by command line. */
6 +
7 +static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
8 +/* -fn option overrides fonts[0]; default X11 font or font set */
9 +static const char *fonts[] = {
10 + "Droid Sans Mono:size=9"
11 +};
12 +static const char *prompt = NULL; /* -p option; prompt to the left of input field */
13 +static const char *colors[SchemeLast][2] = {
14 + /* fg bg */
15 + [SchemeNorm] = { "#777777", "#000000" },
16 + [SchemeSel] = { "#ffffff", "#000000" },
17 + [SchemeOut] = { "#aaaaaa", "#000000" },
18 +};
19 +/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
20 +static unsigned int lines = 0;
21 +
22 +/*
23 + * Characters not considered part of a word while deleting words
24 + * for example: " /?\"&[]"
25 + */
26 +static const char worddelimiters[] = " ";