about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-01-05 15:04:49 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-01-05 15:04:49 +0100
commitec7a5ffff146d71f16d4d9de78db0f1044aa9bc9 (patch)
treed463cc970ef4d1a376fea842b8158f989879dcbc
parent98afb7b9d0799efda00f138f656ce63a82e46f27 (diff)
downloaddwm-ec7a5ffff146d71f16d4d9de78db0f1044aa9bc9.tar.gz
changed plus key to MODKEY-Shift-plus (US-layout restrictions ;)
-rw-r--r--config.arg.h2
-rw-r--r--config.default.h2
-rw-r--r--dwm.12
3 files changed, 3 insertions, 3 deletions
diff --git a/config.arg.h b/config.arg.h
index 04d7221..4be9eba 100644
--- a/config.arg.h
+++ b/config.arg.h
@@ -36,7 +36,7 @@ static Key key[] = { \
 	{ MODKEY,			XK_Return,	zoom,		{ 0 } }, \
 	{ MODKEY,			XK_g,		resizemaster,	{ .i = 15 } }, \
 	{ MODKEY,			XK_s,		resizemaster,	{ .i = -15 } }, \
-	{ MODKEY,			XK_plus,	incnmaster,	{ .i = 1 } }, \
+	{ MODKEY|ShiftMask,		XK_plus,	incnmaster,	{ .i = 1 } }, \
 	{ MODKEY,			XK_minus,	incnmaster,	{ .i = -1 } }, \
 	{ MODKEY|ShiftMask,		XK_0,		tag,		{ .i = -1 } }, \
 	{ MODKEY|ShiftMask,		XK_1,		tag,		{ .i = 0 } }, \
diff --git a/config.default.h b/config.default.h
index 2015177..b0e1dd3 100644
--- a/config.default.h
+++ b/config.default.h
@@ -31,7 +31,7 @@ static Key key[] = { \
 	{ MODKEY,			XK_Return,	zoom,		{ 0 } }, \
 	{ MODKEY,			XK_g,		resizemaster,	{ .i = 15 } }, \
 	{ MODKEY,			XK_s,		resizemaster,	{ .i = -15 } }, \
-	{ MODKEY,			XK_plus,	incnmaster,	{ .i = 1 } }, \
+	{ MODKEY|ShiftMask,		XK_plus,	incnmaster,	{ .i = 1 } }, \
 	{ MODKEY,			XK_minus,	incnmaster,	{ .i = -1 } }, \
 	{ MODKEY|ShiftMask,		XK_0,		tag,		{ .i = -1 } }, \
 	{ MODKEY|ShiftMask,		XK_1,		tag,		{ .i = 0 } }, \
diff --git a/dwm.1 b/dwm.1
index 8742fa8..084c64e 100644
--- a/dwm.1
+++ b/dwm.1
@@ -70,7 +70,7 @@ Grow master area (tiling mode only).
 .B Mod1-s
 Shrink master area (tiling mode only).
 .TP
-.B Mod1-plus
+.B Mod1-Shift-plus
 Increase clients of master area (tiling mode only).
 .TP
 .B Mod1-minus
ik/mu/blame/subx/000organization.cc?h=hlt&id=e11bec57730f5bbcd9d6780c8dec0cbd4153c50f'>^
87fe3d7a ^


248e789e ^




84ca523f ^
248e789e ^
52ea3102 ^
248e789e ^



42d2d595 ^






248e789e ^
224474d7 ^

248e789e ^
aee46a25 ^




b06d827f ^
aee46a25 ^


bcafd01f ^


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162