diff options
| author | bard <[email protected]> | 2024-04-15 06:24:14 -0400 |
|---|---|---|
| committer | bard <[email protected]> | 2024-04-15 06:24:14 -0400 |
| commit | 168120d4068eff9816c11f0503738c12861821ae (patch) | |
| tree | 635e839eeca920432fcaa8417b282e074e84a4c2 /dwm/Repositories/dmenu/config.h | |
initial commit
Diffstat (limited to 'dwm/Repositories/dmenu/config.h')
| -rw-r--r-- | dwm/Repositories/dmenu/config.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dwm/Repositories/dmenu/config.h b/dwm/Repositories/dmenu/config.h new file mode 100644 index 0000000..7947d42 --- /dev/null +++ b/dwm/Repositories/dmenu/config.h @@ -0,0 +1,29 @@ +/* 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 */ +static int centered = 1; /* -c option; centers dmenu on screen */ +static int min_width = 1000; /* minimum width when centered */ +/* Size of the window border */ +static unsigned int border_width = 2; + +/* -fn option overrides fonts[0]; default X11 font or font set */ +static const char *fonts[] = { + "Iosevka Comfy:size=16", + "NotoColorEmoji: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] = { "#ffffff", "#000000" }, + [SchemeSel] = { "#ffffff", "#989898" }, + [SchemeOut] = { "#000000", "#00ffff" }, +}; +/* -l option; if nonzero, dmenu uses vertical list with given number of lines */ +static unsigned int lines = 20; + +/* + * Characters not considered part of a word while deleting words + * for example: " /?\"&[]" + */ +static const char worddelimiters[] = " "; |
