diff options
| -rwxr-xr-x[-rw-r--r--] | LICENSE | 0 | ||||
| -rwxr-xr-x[-rw-r--r--] | Makefile | 0 | ||||
| -rwxr-xr-x[-rw-r--r--] | README | 0 | ||||
| -rwxr-xr-x[-rw-r--r--] | arg.h | 0 | ||||
| -rwxr-xr-x[-rw-r--r--] | config.def.h | 0 | ||||
| -rwxr-xr-x | config.h | 21 | ||||
| -rwxr-xr-x[-rw-r--r--] | config.mk | 0 | ||||
| -rwxr-xr-x | dmenu | bin | 0 -> 43064 bytes | |||
| -rwxr-xr-x[-rw-r--r--] | dmenu.1 | 0 | ||||
| -rwxr-xr-x[-rw-r--r--] | dmenu.c | 0 | ||||
| -rw-r--r-- | dmenu.o | bin | 0 -> 32056 bytes | |||
| -rwxr-xr-x[-rw-r--r--] | drw.c | 0 | ||||
| -rwxr-xr-x[-rw-r--r--] | drw.h | 0 | ||||
| -rw-r--r-- | drw.o | bin | 0 -> 11720 bytes | |||
| -rwxr-xr-x | stest | bin | 0 -> 16432 bytes | |||
| -rwxr-xr-x[-rw-r--r--] | stest.1 | 0 | ||||
| -rwxr-xr-x[-rw-r--r--] | stest.c | 0 | ||||
| -rw-r--r-- | stest.o | bin | 0 -> 5240 bytes | |||
| -rwxr-xr-x[-rw-r--r--] | util.c | 0 | ||||
| -rwxr-xr-x[-rw-r--r--] | util.h | 0 | ||||
| -rw-r--r-- | util.o | bin | 0 -> 2400 bytes |
21 files changed, 21 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 1edb647..1edb647 100644..100755 --- a/config.def.h +++ b/config.def.h diff --git a/config.h b/config.h new file mode 100755 index 0000000..181e593 --- /dev/null +++ b/config.h @@ -0,0 +1,21 @@ +/* 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[] = { "FiraCode Nerd Font:size=14" }; +static const char *prompt = NULL; /* -p option; prompt to the left of input field */ +static const char *colors[SchemeLast][2] = { + /* fg bg */ + [SchemeNorm] = { "#D8DEE9", "#2E3440" }, + [SchemeSel] = { "#ECEFF4", "#616E88" }, + [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[] = " "; Binary files differBinary files differBinary files differBinary files differBinary files differBinary files differ |
