diff options
author | dx <aryadevchavali1@gmail.com> | 2020-05-14 16:17:05 +0100 |
---|---|---|
committer | dx <aryadevchavali1@gmail.com> | 2020-05-14 16:17:05 +0100 |
commit | 0a3dd374c6973d7fe3815f3587732c9f4ddaa6be (patch) | |
tree | 7cd2bfff377a562f0045c2413cac04646a673caf | |
parent | 2552639a8ce713f232a5cd1a176f88dc534ae726 (diff) | |
download | dmenu-0a3dd374c6973d7fe3815f3587732c9f4ddaa6be.tar.gz dmenu-0a3dd374c6973d7fe3815f3587732c9f4ddaa6be.tar.bz2 dmenu-0a3dd374c6973d7fe3815f3587732c9f4ddaa6be.zip |
+my config.h file
-rw-r--r-- | config.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/config.h b/config.h new file mode 100644 index 0000000..f6c9ea7 --- /dev/null +++ b/config.h @@ -0,0 +1,26 @@ +/* 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 fuzzy = 1; /* -F option; if 0, dmenu doesn't use fuzzy matching */ +/* -fn option overrides fonts[0]; default X11 font or font set */ +static const char *fonts[] = { + "Hack:size=14" +}; +static const char *prompt = NULL; /* -p option; prompt to the left of input field */ +static const char *colors[SchemeLast][2] = { + /* fg bg */ + [SchemeNorm] = { "#bbbbbb", "#222222" }, + [SchemeSel] = { "#eeeeee", "#005577" }, + [SchemeSelHighlight] = { "#22d30e", "#4f4c4c" }, + [SchemeNormHighlight] = { "#22d30e", "#222222" }, + [SchemeOut] = { "#000000", "#00ffff" }, +}; +/* -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[] = " "; |