diff options
| author | auric <auric7@protonmail.com> | 2025-09-07 18:15:42 -0500 |
|---|---|---|
| committer | auric <auric7@protonmail.com> | 2025-09-07 18:15:42 -0500 |
| commit | 5cf3a788d2335d79c2e26c133f013c994f035ad7 (patch) | |
| tree | a8775543e7c02e40faaf1175fb9d28688ffe3002 /dmenu | |
| parent | 9e19620c687158b2611e73249d32bbd196a84b4f (diff) | |
Fix duplicated definitions in dwm.c around scratchtag
Diffstat (limited to 'dmenu')
| -rw-r--r-- | dmenu/config.h | 23 | ||||
| -rwxr-xr-x | dmenu/dmenu | bin | 0 -> 42688 bytes | |||
| -rw-r--r-- | dmenu/dmenu.o | bin | 0 -> 33704 bytes | |||
| -rw-r--r-- | dmenu/drw.o | bin | 0 -> 11464 bytes | |||
| -rwxr-xr-x | dmenu/stest | bin | 0 -> 16288 bytes | |||
| -rw-r--r-- | dmenu/stest.o | bin | 0 -> 5344 bytes | |||
| -rw-r--r-- | dmenu/util.o | bin | 0 -> 2472 bytes |
7 files changed, 23 insertions, 0 deletions
diff --git a/dmenu/config.h b/dmenu/config.h new file mode 100644 index 0000000..1edb647 --- /dev/null +++ b/dmenu/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[] = " "; diff --git a/dmenu/dmenu b/dmenu/dmenu Binary files differnew file mode 100755 index 0000000..27d9aed --- /dev/null +++ b/dmenu/dmenu diff --git a/dmenu/dmenu.o b/dmenu/dmenu.o Binary files differnew file mode 100644 index 0000000..025b008 --- /dev/null +++ b/dmenu/dmenu.o diff --git a/dmenu/drw.o b/dmenu/drw.o Binary files differnew file mode 100644 index 0000000..69dbfa9 --- /dev/null +++ b/dmenu/drw.o diff --git a/dmenu/stest b/dmenu/stest Binary files differnew file mode 100755 index 0000000..7ba4cf1 --- /dev/null +++ b/dmenu/stest diff --git a/dmenu/stest.o b/dmenu/stest.o Binary files differnew file mode 100644 index 0000000..3d5045e --- /dev/null +++ b/dmenu/stest.o diff --git a/dmenu/util.o b/dmenu/util.o Binary files differnew file mode 100644 index 0000000..5dd48bf --- /dev/null +++ b/dmenu/util.o |
