From 12c61a33546358928777b584883c1e990ab09a21 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Sun, 11 Apr 2021 13:29:48 +0530 Subject: configured a real sexy colorscheme hell yea --- config.def.h | 19 ++++++++++--------- config.h | 18 ++++++++++-------- dmenu | Bin 43512 -> 43520 bytes dmenu.o | Bin 34400 -> 34480 bytes 4 files changed, 20 insertions(+), 17 deletions(-) diff --git a/config.def.h b/config.def.h index 8c95753..71594bf 100644 --- a/config.def.h +++ b/config.def.h @@ -1,20 +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" + "Hack:size=11" }; -static const char *prompt = NULL; /* -p option; prompt to the left of input field */ +static const char *prompt = "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" }, - [SchemeMid] = { "#eeeeee", "#770000" }, + [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; diff --git a/config.h b/config.h index c979baf..71594bf 100644 --- a/config.h +++ b/config.h @@ -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" + "Hack:size=11" }; -static const char *prompt = NULL; /* -p option; prompt to the left of input field */ +static const char *prompt = "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; diff --git a/dmenu b/dmenu index 147e234..21f1c2f 100755 Binary files a/dmenu and b/dmenu differ diff --git a/dmenu.o b/dmenu.o index 4717bf7..8b15fe5 100644 Binary files a/dmenu.o and b/dmenu.o differ -- cgit v1.2.3