patch same (non-default) colors used in other suckless ports (e.g. dwm,

tabbed, slock)

ok jim@ (maintainer)
This commit is contained in:
zinke 2012-11-05 13:14:23 +00:00
parent d70ef6043b
commit 6d88816f71
2 changed files with 20 additions and 1 deletions

View File

@ -1,7 +1,8 @@
# $OpenBSD: Makefile,v 1.18 2012/05/01 04:40:03 gsoares Exp $
# $OpenBSD: Makefile,v 1.19 2012/11/05 13:14:23 zinke Exp $
COMMENT= dynamic menu for X11
DISTNAME= dmenu-4.5
REVISION= 0
CATEGORIES= x11
HOMEPAGE= http://tools.suckless.org/dmenu

View File

@ -0,0 +1,18 @@
$OpenBSD: patch-dmenu_c,v 1.1 2012/11/05 13:14:23 zinke Exp $
--- dmenu.c.orig Fri Nov 2 13:18:33 2012
+++ dmenu.c Fri Nov 2 13:19:46 2012
@@ -45,10 +45,10 @@ static int inputw, promptw;
static size_t cursor = 0;
static const char *font = NULL;
static const char *prompt = NULL;
-static const char *normbgcolor = "#222222";
-static const char *normfgcolor = "#bbbbbb";
-static const char *selbgcolor = "#005577";
-static const char *selfgcolor = "#eeeeee";
+static const char *normbgcolor = "#202020";
+static const char *normfgcolor = "#c0c0c0";
+static const char *selbgcolor = "#404040";
+static const char *selfgcolor = "#f0f0f0";
static unsigned int lines = 0;
static unsigned long normcol[ColLast];
static unsigned long selcol[ColLast];