Button3 click on mode label toggles stack position now d9c475d7
Anselm R. Garbe · 2006-10-05 09:37 2 file(s) · +5 −2
dwm.1 +3 −2
40 40
label toggles between tiled and floating mode.
41 41
.TP
42 42
.B Button3
43 -
click on a tag label adds/removes all windows with that tag to/from the view.
43 +
click on a tag label adds/removes all windows with that tag to/from the view,
44 +
click on the mode label toggles the stack position (tiled mode).
44 45
.TP
45 46
.B Mod1-Button1
46 47
click on a tag label applies that tag to the focused window.
63 64
Zooms/cycles current window to/from master area (tiling mode), toggles maximization current window (floating mode).
64 65
.TP
65 66
.B Mod1-b
66 -
Toggle stacking area position (tiling mode only).
67 +
Toggle stack position (tiling mode only).
67 68
.TP
68 69
.B Mod1-g
69 70
Grow current area (tiling mode only).
event.c +2 −0
126 126
		if(ev->x < x + bmw) {
127 127
			if(ev->button == Button1)
128 128
				togglemode(NULL);
129 +
			else if(ev->button == Button3)
130 +
				togglestackpos(NULL);
129 131
		}
130 132
	}
131 133
	else if((c = getclient(ev->window))) {