From 168120d4068eff9816c11f0503738c12861821ae Mon Sep 17 00:00:00 2001 From: bard Date: Mon, 15 Apr 2024 06:24:14 -0400 Subject: initial commit --- dwm/Repositories/dmenu/zen.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 dwm/Repositories/dmenu/zen.h (limited to 'dwm/Repositories/dmenu/zen.h') diff --git a/dwm/Repositories/dmenu/zen.h b/dwm/Repositories/dmenu/zen.h new file mode 100644 index 0000000..e2c203c --- /dev/null +++ b/dwm/Repositories/dmenu/zen.h @@ -0,0 +1,28 @@ +/* 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" +}; +static const char *prompt = NULL; /* -p option; prompt to the left of input field */ +static const char *colors[SchemeLast][2] = { + /* fg bg */ + [SchemeNorm] = { "#DCDCCC", "#3F3F3F" }, + [SchemeSel] = { "#DCDCCC", "#7F9F7F" }, + [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[] = " "; -- cgit v1.2.3