aboutsummaryrefslogtreecommitdiff
path: root/dwm/Repositories/dmenu/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'dwm/Repositories/dmenu/config.h')
-rw-r--r--dwm/Repositories/dmenu/config.h29
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[] = " ";