diff options
| author | auric <104602845+ihateamongus@users.noreply.github.com> | 2025-09-07 19:26:17 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-07 19:26:17 -0500 |
| commit | 30b8f7faf8b3d58971672cadf97084d2a897bea9 (patch) | |
| tree | 2849f3dea2612f11f9f1496c00ad3344ec0df644 /dmenu | |
| parent | ac363b0b326afc73b7e01d0bed8848ed336e0a39 (diff) | |
| parent | 8661540682391f5f6db33a86747028d90dda09ed (diff) | |
Merge branch 'master' into codex/analyze-oldresources-folder-for-performance-x6iukv
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 |
