JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
removed unnecessary border color
[dwm.git] / main.c
diff --git a/main.c b/main.c
index ded4761..534402c 100644 (file)
--- a/main.c
+++ b/main.c
@@ -201,7 +201,6 @@ main(int argc, char *argv[])
        wmatom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False);
        netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
        netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
-       netatom[NetActiveWindow] = XInternAtom(dpy, "_NET_ACTIVE_WINDOW", False);
        XChangeProperty(dpy, root, netatom[NetSupported], XA_ATOM, 32,
                        PropModeReplace, (unsigned char *) netatom, NetLast);
 
@@ -218,7 +217,6 @@ main(int argc, char *argv[])
        /* style */
        dc.bg = getcolor(BGCOLOR);
        dc.fg = getcolor(FGCOLOR);
-       dc.border = getcolor(BORDERCOLOR);
        setfont(FONT);
 
        sx = sy = 0;