summaryrefslogtreecommitdiff
path: root/dmenu-5.0/config.def.h
diff options
context:
space:
mode:
authorstkhan <personal@slickd.xyz>2022-05-22 10:28:58 +0000
committerstkhan <personal@slickd.xyz>2022-05-22 10:28:58 +0000
commitf580f6b064235ce0de0792abc86e719e50f87696 (patch)
tree69563c9ce3483beddd4a9065c205410e0d0052fe /dmenu-5.0/config.def.h
parent30e3e653dc7083c4e2f2855ec32f42f5490b8a35 (diff)
Updated dmenu, fixed crashing issue
Diffstat (limited to 'dmenu-5.0/config.def.h')
-rw-r--r--dmenu-5.0/config.def.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/dmenu-5.0/config.def.h b/dmenu-5.0/config.def.h
deleted file mode 100644
index 1edb647..0000000
--- a/dmenu-5.0/config.def.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* 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 */
-/* -fn option overrides fonts[0]; default X11 font or font set */
-static const char *fonts[] = {
- "monospace: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] = { "#bbbbbb", "#222222" },
- [SchemeSel] = { "#eeeeee", "#005577" },
- [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[] = " ";