removed unused variables
This commit is contained in:
parent
d9527bd949
commit
450695762f
5
dunst.c
5
dunst.c
@ -35,10 +35,7 @@ static int lines = 0;
|
|||||||
static const char *font = NULL;
|
static const char *font = NULL;
|
||||||
static const char *normbgcolor = "#cccccc";
|
static const char *normbgcolor = "#cccccc";
|
||||||
static const char *normfgcolor = "#000000";
|
static const char *normfgcolor = "#000000";
|
||||||
static const char *selbgcolor = "#0066ff";
|
|
||||||
static const char *selfgcolor = "#ffffff";
|
|
||||||
static unsigned long normcol[ColLast];
|
static unsigned long normcol[ColLast];
|
||||||
static unsigned long selcol[ColLast];
|
|
||||||
static Atom utf8;
|
static Atom utf8;
|
||||||
static Bool topbar = True;
|
static Bool topbar = True;
|
||||||
static DC *dc;
|
static DC *dc;
|
||||||
@ -217,8 +214,6 @@ setup(void) {
|
|||||||
|
|
||||||
normcol[ColBG] = getcolor(dc, normbgcolor);
|
normcol[ColBG] = getcolor(dc, normbgcolor);
|
||||||
normcol[ColFG] = getcolor(dc, normfgcolor);
|
normcol[ColFG] = getcolor(dc, normfgcolor);
|
||||||
selcol[ColBG] = getcolor(dc, selbgcolor);
|
|
||||||
selcol[ColFG] = getcolor(dc, selfgcolor);
|
|
||||||
|
|
||||||
utf8 = XInternAtom(dc->dpy, "UTF8_STRING", False);
|
utf8 = XInternAtom(dc->dpy, "UTF8_STRING", False);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user