replacing Mod1-i with Mod1-Shift-j, Mod1-d with Mod1-Shift-k 2122e39c
Anselm R. Garbe · 2007-02-23 13:37 3 file(s) · +10 −10
config.arg.h +2 −2
47 47
	{ MODKEY|ShiftMask,		XK_Return,	spawn, \
48 48
		"exec urxvtcd -tr -bg '#222' -fg '#eee' -cr '#eee' +sb -fn '"FONT"'" }, \
49 49
	{ MODKEY,			XK_space,	setlayout,	NULL }, \
50 -
	{ MODKEY,			XK_d,		incnmaster,	"-1" }, \
51 -
	{ MODKEY,			XK_i,		incnmaster,	"1" }, \
52 50
	{ MODKEY,			XK_h,		incmasterw,	"-32" }, \
53 51
	{ MODKEY,			XK_l,		incmasterw,	"32" }, \
52 +
	{ MODKEY|ShiftMask,		XK_j,		incnmaster,	"1" }, \
53 +
	{ MODKEY|ShiftMask,		XK_k,		incnmaster,	"-1" }, \
54 54
	{ MODKEY,			XK_j,		focusclient,	"1" }, \
55 55
	{ MODKEY,			XK_k,		focusclient,	"-1" }, \
56 56
	{ MODKEY,			XK_m,		togglemax,	NULL }, \
config.default.h +2 −2
45 45
	{ MODKEY|ShiftMask,		XK_Return,	spawn,		"exec xterm" }, \
46 46
	{ MODKEY,			XK_p,		spawn, 		"exe=`dmenu_path | dmenu` && exec $exe" }, \
47 47
	{ MODKEY,			XK_space,	setlayout,	NULL }, \
48 -
	{ MODKEY,			XK_d,		incnmaster,	"-1" }, \
49 -
	{ MODKEY,			XK_i,		incnmaster,	"1" }, \
50 48
	{ MODKEY,			XK_h,		incmasterw,	"-32" }, \
51 49
	{ MODKEY,			XK_l,		incmasterw,	"32" }, \
50 +
	{ MODKEY|ShiftMask,		XK_j,		incnmaster,	"1" }, \
51 +
	{ MODKEY|ShiftMask,		XK_k,		incnmaster,	"-1" }, \
52 52
	{ MODKEY,			XK_j,		focusclient,	"1" }, \
53 53
	{ MODKEY,			XK_k,		focusclient,	"-1" }, \
54 54
	{ MODKEY,			XK_m,		togglemax,	NULL }, \
dwm.1 +6 −6
65 65
.B Mod1-k
66 66
Focus previous window.
67 67
.TP
68 +
.B Mod1-Shift-j
69 +
Increase the number of windows in the master area (tiled layout only).
70 +
.TP
71 +
.B Mod1-Shift-k
72 +
Decrease the number of windows in the master area (tiled layout only).
73 +
.TP
68 74
.B Mod1-l
69 75
Increase master area width (tiled layout only).
70 76
.TP
71 77
.B Mod1-h
72 78
Decrease master area width (tiled layout only).
73 -
.TP
74 -
.B Mod1-i
75 -
Increase the number of windows in the master area (tiled layout only).
76 -
.TP
77 -
.B Mod1-d
78 -
Decrease the number of windows in the master area (tiled layout only).
79 79
.TP
80 80
.B Mod1-m
81 81
Toggles maximization of current window (floating layout only).