about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-02-23 11:09:18 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-02-23 11:09:18 +0100
commit35f08f4231933b55fb668314498c4049a828f410 (patch)
treea23a6c5aeff3bc52dad30dd07db7f9102309fb6d
parent0ea0343a631b62f2a9d9c5b279d3e368ec47c28a (diff)
downloaddwm-35f08f4231933b55fb668314498c4049a828f410.tar.gz
changed order if h/l
-rw-r--r--config.default.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.default.h b/config.default.h
index c20f1b2..95e2906 100644
--- a/config.default.h
+++ b/config.default.h
@@ -47,8 +47,8 @@ static Key key[] = { \
 	{ MODKEY,			XK_space,	setlayout,	NULL }, \
 	{ MODKEY,			XK_d,		incnmaster,	"-1" }, \
 	{ MODKEY,			XK_i,		incnmaster,	"1" }, \
-	{ MODKEY,			XK_l,		incmasterw,	"32" }, \
 	{ MODKEY,			XK_h,		incmasterw,	"-32" }, \
+	{ MODKEY,			XK_l,		incmasterw,	"32" }, \
 	{ MODKEY,			XK_j,		focusclient,	"1" }, \
 	{ MODKEY,			XK_k,		focusclient,	"-1" }, \
 	{ MODKEY,			XK_m,		togglemax,	NULL }, \
2'>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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220