summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrafa_99 <rafa99@protonmail.com>2020-09-02 18:01:05 +0100
committerrafa_99 <rafa99@protonmail.com>2020-09-02 18:01:05 +0100
commit3750669e681594c2ef2281c673f87f7cc6aea5a3 (patch)
treeb28044c8916ba33fcfa895a03c6303fe0f15ff58
parent0f2d5ec20afe20537c0a9273c175494a3ea86959 (diff)
Added Custom Config
-rw-r--r--config.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/config.h b/config.h
new file mode 100644
index 0000000..5f2c85a
--- /dev/null
+++ b/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 = 0; /* -b option; if 0, dmenu appears at bottom */
+/* -fn option overrides fonts[0]; default X11 font or font set */
+static const char *fonts[] = {
+ "JetBrains Mono Nerd Font:size=12"
+};
+static const char *prompt = NULL; /* -p option; prompt to the left of input field */
+
+#include "colors.h"
+
+/* -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[] = " ";
+
+/* Size of the window border */
+static unsigned int border_width = 2;