t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit d9c475d7f4978f97b63b462425eb413c11fe337b
   DIR parent c8e57332d1a5167d213af0fc9438ff2b56c74fbb
   URI Author: Anselm R. Garbe <arg@10kloc.org>
       Date:   Thu,  5 Oct 2006 09:37:11 +0200
       
       Button3 click on mode label toggles stack position now
       Diffstat:
         M dwm.1                               |       5 +++--
         M event.c                             |       2 ++
       
       2 files changed, 5 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/dwm.1 b/dwm.1
       t@@ -40,7 +40,8 @@ click on a tag label to display all windows with that tag, click on the mode
        label toggles between tiled and floating mode.
        .TP
        .B Button3
       -click on a tag label adds/removes all windows with that tag to/from the view.
       +click on a tag label adds/removes all windows with that tag to/from the view,
       +click on the mode label toggles the stack position (tiled mode).
        .TP
        .B Mod1-Button1
        click on a tag label applies that tag to the focused window.
       t@@ -63,7 +64,7 @@ Focus previous window.
        Zooms/cycles current window to/from master area (tiling mode), toggles maximization current window (floating mode).
        .TP
        .B Mod1-b
       -Toggle stacking area position (tiling mode only).
       +Toggle stack position (tiling mode only).
        .TP
        .B Mod1-g
        Grow current area (tiling mode only).
   DIR diff --git a/event.c b/event.c
       t@@ -126,6 +126,8 @@ buttonpress(XEvent *e) {
                        if(ev->x < x + bmw) {
                                if(ev->button == Button1)
                                        togglemode(NULL);
       +                        else if(ev->button == Button3)
       +                                togglestackpos(NULL);
                        }
                }
                else if((c = getclient(ev->window))) {