aboutsummaryrefslogtreecommitdiff
path: root/dmenu.c
diff options
context:
space:
mode:
Diffstat (limited to 'dmenu.c')
-rw-r--r--dmenu.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/dmenu.c b/dmenu.c
index c25dc82..a06ae15 100644
--- a/dmenu.c
+++ b/dmenu.c
@@ -44,20 +44,10 @@ static char text[BUFSIZ] = "";
44static int bh, mw, mh; 44static int bh, mw, mh;
45static int inputw, promptw; 45static int inputw, promptw;
46static size_t cursor = 0; 46static size_t cursor = 0;
47static const char *font = NULL;
48static const char *prompt = NULL;
49static const char *normbgcolor = "#222222";
50static const char *normfgcolor = "#bbbbbb";
51static const char *selbgcolor = "#005577";
52static const char *selfgcolor = "#eeeeee";
53static const char *outbgcolor = "#00ffff";
54static const char *outfgcolor = "#000000";
55static unsigned int lines = 0;
56static unsigned long normcol[ColLast]; 47static unsigned long normcol[ColLast];
57static unsigned long selcol[ColLast]; 48static unsigned long selcol[ColLast];
58static unsigned long outcol[ColLast]; 49static unsigned long outcol[ColLast];
59static Atom clip, utf8; 50static Atom clip, utf8;
60static Bool topbar = True;
61static DC *dc; 51static DC *dc;
62static Item *items = NULL; 52static Item *items = NULL;
63static Item *matches, *matchend; 53static Item *matches, *matchend;
@@ -65,6 +55,8 @@ static Item *prev, *curr, *next, *sel;
65static Window win; 55static Window win;
66static XIC xic; 56static XIC xic;
67 57
58#include "config.h"
59
68static int (*fstrncmp)(const char *, const char *, size_t) = strncmp; 60static int (*fstrncmp)(const char *, const char *, size_t) = strncmp;
69static char *(*fstrstr)(const char *, const char *) = strstr; 61static char *(*fstrstr)(const char *, const char *) = strstr;
70 62