diff options
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/config.def.h b/config.def.h index 697d511..0800eb3 100644 --- a/config.def.h +++ b/config.def.h @@ -1,18 +1,19 @@ /* See LICENSE file for copyright and license details. */ /* Default settings; can be overriden by command line. */ +#include <endian.h> static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */ -static const unsigned int alpha = 0xf0; +static const unsigned int alpha = 0xcc; /* -fn option overrides fonts[0]; default X11 font or font set */ static const char *fonts[] = { - "monospace:size=10" + "SauceCodePro Nerd Font:style=Regular:pixelsize=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" }, - [SchemeOut] = { "#000000", "#00ffff" }, + [SchemeNorm] = { "#ebdbb2", "#282828" }, + [SchemeSel] = { "#282828", "#b16286" }, + [SchemeOut] = { "#888888", "#191919" }, }; static const unsigned int alphas[SchemeLast][2] = { @@ -22,7 +23,12 @@ static const unsigned int alphas[SchemeLast][2] = { }; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */ -static unsigned int lines = 0; +static unsigned int lines = 20; +static unsigned int gapxx = 10; +static unsigned int border = 10; +static unsigned int borderline = 0; +static unsigned int border_width = 2; +static unsigned int border_color = 0xb16286; /* * Characters not considered part of a word while deleting words |