about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--config.arg.h4
-rw-r--r--config.default.h4
-rw-r--r--dwm.14
3 files changed, 6 insertions, 6 deletions
diff --git a/config.arg.h b/config.arg.h
index 4be9eba..da51a43 100644
--- a/config.arg.h
+++ b/config.arg.h
@@ -36,8 +36,8 @@ static Key key[] = { \
 	{ MODKEY,			XK_Return,	zoom,		{ 0 } }, \
 	{ MODKEY,			XK_g,		resizemaster,	{ .i = 15 } }, \
 	{ MODKEY,			XK_s,		resizemaster,	{ .i = -15 } }, \
-	{ MODKEY|ShiftMask,		XK_plus,	incnmaster,	{ .i = 1 } }, \
-	{ MODKEY,			XK_minus,	incnmaster,	{ .i = -1 } }, \
+	{ MODKEY,			XK_i,		incnmaster,	{ .i = 1 } }, \
+	{ MODKEY,			XK_d,		incnmaster,	{ .i = -1 } }, \
 	{ MODKEY|ShiftMask,		XK_0,		tag,		{ .i = -1 } }, \
 	{ MODKEY|ShiftMask,		XK_1,		tag,		{ .i = 0 } }, \
 	{ MODKEY|ShiftMask,		XK_2,		tag,		{ .i = 1 } }, \
diff --git a/config.default.h b/config.default.h
index b0e1dd3..2e36818 100644
--- a/config.default.h
+++ b/config.default.h
@@ -31,8 +31,8 @@ static Key key[] = { \
 	{ MODKEY,			XK_Return,	zoom,		{ 0 } }, \
 	{ MODKEY,			XK_g,		resizemaster,	{ .i = 15 } }, \
 	{ MODKEY,			XK_s,		resizemaster,	{ .i = -15 } }, \
-	{ MODKEY|ShiftMask,		XK_plus,	incnmaster,	{ .i = 1 } }, \
-	{ MODKEY,			XK_minus,	incnmaster,	{ .i = -1 } }, \
+	{ MODKEY,			XK_i,		incnmaster,	{ .i = 1 } }, \
+	{ MODKEY,			XK_d,		incnmaster,	{ .i = -1 } }, \
 	{ MODKEY|ShiftMask,		XK_0,		tag,		{ .i = -1 } }, \
 	{ MODKEY|ShiftMask,		XK_1,		tag,		{ .i = 0 } }, \
 	{ MODKEY|ShiftMask,		XK_2,		tag,		{ .i = 1 } }, \
diff --git a/dwm.1 b/dwm.1
index 084c64e..1f6d163 100644
--- a/dwm.1
+++ b/dwm.1
@@ -70,10 +70,10 @@ Grow master area (tiling mode only).
 .B Mod1-s
 Shrink master area (tiling mode only).
 .TP
-.B Mod1-Shift-plus
+.B Mod1-i
 Increase clients of master area (tiling mode only).
 .TP
-.B Mod1-minus
+.B Mod1-d
 Decrease clients of master area (tiling mode only).
 .TP
 .B Mod1-Shift-[1..n]
20-09-15 22:21:15 -0700 committer Kartik Agaram <vc@akkartik.com> 2020-09-15 22:52:41 -0700 6781 - new app: RPN (postfix) calculator' href='/akkartik/mu/commit/400.mu?h=main&id=ae470b42f102d5da4f7d4255a47e3cf582079f33'>ae470b42 ^
8e4b4f20 ^
ae470b42 ^
4449f487 ^
c5a3f655 ^
01b72aa0 ^




e2b55208 ^
01b72aa0 ^

e2b55208 ^
b8df5340 ^
c5a3f655 ^













e2b55208 ^



c5a3f655 ^
e2b55208 ^
c5a3f655 ^
e2b55208 ^
c5a3f655 ^
86a12476 ^
022595a2 ^

c5a3f655 ^










6b343a82 ^

c5a3f655 ^







ae470b42 ^



c5a3f655 ^







6b343a82 ^



ae470b42 ^
be2a94d9 ^
0452b05f ^
6b343a82 ^
6b41ca6d ^

6b343a82 ^







c5a3f655 ^

e403d157 ^
ae470b42 ^
c5a3f655 ^
492fb278 ^

b8df5340 ^
30012350 ^


e0bceffe ^
5462619d ^

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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178