t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 040d0f48a0b41d67004b4a0698fe21a86ebaa490
   DIR parent 724f35a66404efdcf6f684c8616c444c5a5801cd
   URI Author: arg@mig29 <unknown>
       Date:   Thu, 26 Oct 2006 15:05:45 +0200
       
       apply small fix to prevent apps like mplayer wandering when toggling fullscreen
       Diffstat:
         M client.c                            |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/client.c b/client.c
       t@@ -202,8 +202,8 @@ manage(Window w, XWindowAttributes *wa) {
                c = emallocz(sizeof(Client));
                c->tags = emallocz(ntags * sizeof(Bool));
                c->win = w;
       -        c->x = c->tx = wa->x;
       -        c->y = c->ty = wa->y;
       +        c->x = c->tx = wa->x; c->x -= BORDERPX;
       +        c->y = c->ty = wa->y; c->y -= BORDERPX;
                c->w = c->tw = wa->width;
                c->h = wa->height;
                c->th = bh;