commit 6ce0e7f8fde8ace1461547348dab3cd8a57ae60b
parent 6c9469d4326b1e05ede8290399d9b3f2683618fa
Author: Ed van Bruggen <edvb54@gmail.com>
Date: Wed, 30 Mar 2016 22:02:54 -0700
Merge branch 'master' of https://gitlab.com/edvb/dotfiles
Diffstat:
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/config.h/dmenu.config.h b/config.h/dmenu.config.h
@@ -1,9 +1,7 @@
/* See LICENSE file for copyright and license details. */
-/* vim: expandtab
- */
-/* Default settings; can be overrided by command line. */
+/* Default settings; can be overriden by command line. */
-static Bool topbar = True; /* -b option; if False, dmenu appears at bottom */
+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[] = {
"FantasqueSansMono-16:light"
@@ -17,3 +15,9 @@ static const char *outbgcolor = "#00ffff";
static const char *outfgcolor = "#000000";
/* -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[] = " ";