summaryrefslogtreecommitdiff
path: root/config.def.h.orig
diff options
context:
space:
mode:
Diffstat (limited to 'config.def.h.orig')
-rw-r--r--config.def.h.orig18
1 files changed, 10 insertions, 8 deletions
diff --git a/config.def.h.orig b/config.def.h.orig
index c979baf..a29eaa8 100644
--- a/config.def.h.orig
+++ b/config.def.h.orig
@@ -1,19 +1,21 @@
/* 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 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[] = {
- "monospace:size=10"
+ "Sauce Code Pro:size=12"
};
-static const char *prompt = NULL; /* -p option; prompt to the left of input field */
+static const char *prompt = "DMENU RUN: ";//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] = { "#ffc978", "#005577" },
- [SchemeNormHighlight] = { "#ffc978", "#222222" },
- [SchemeOut] = { "#000000", "#00ffff" },
+ [SchemeNorm] = { "#FFFFFF", "#171520" },
+ [SchemeSel] = { "#FFFFFF", "#D33682" },
+ [SchemeSelHighlight] = { "#FFFFFF", "#5B76B7" },
+ [SchemeNormHighlight] = { "#FFFFFF", "#130F23" },
+ [SchemeMid] = { "#FFFFFF", "#8915e5" },
+ /*[SchemeNormHighlight] = { "#FFFFFF", "#222222" },*/
+ [SchemeOut] = { "#FFFFFF", "#5b76b7" },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
static unsigned int lines = 0;