From d737a89aad20468dfa62239a0758c51a91fa7b9d Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Thu, 2 Dec 2021 20:20:01 +0530 Subject: Changed color scheme and fixed height --- config.def.h.orig | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'config.def.h.orig') 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; -- cgit v1.2.3