X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/2255bf46a0af475e70fb4cc90d912b435f21eb5e..d384cee751a2d23220df45c3c34dab5567c0594f:/dwm.c diff --git a/dwm.c b/dwm.c index 05ab119..f6cec0b 100644 --- a/dwm.c +++ b/dwm.c @@ -781,7 +781,7 @@ void drawsquare(Bool filled, Bool empty, Bool invert, unsigned long col[ColLast]) { int x; - XSetForeground(dpy, dc.gc, col[invert ? ColFG : ColBG]); + XSetForeground(dpy, dc.gc, col[invert ? ColBG : ColFG]); x = (dc.font.ascent + dc.font.descent + 2) / 4; if(filled) XFillRectangle(dpy, dc.drawable, dc.gc, dc.x+1, dc.y+1, x+1, x+1); @@ -2046,7 +2046,7 @@ zoom(const Arg *arg) { int main(int argc, char *argv[]) { if(argc == 2 && !strcmp("-v", argv[1])) - die("dwm-"VERSION", © 2006-2010 dwm engineers, see LICENSE for details\n"); + die("dwm-"VERSION", © 2006-2011 dwm engineers, see LICENSE for details\n"); else if(argc != 1) die("usage: dwm [-v]\n"); if(!setlocale(LC_CTYPE, "") || !XSupportsLocale())