about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@wmii.de>2006-07-13 11:49:31 +0200
committerAnselm R. Garbe <garbeam@wmii.de>2006-07-13 11:49:31 +0200
commit21553f9b4dc80a3afa0a76854dd2ae5ea5e1f4a1 (patch)
tree12b0384dabcaf7755755e5ad38c9055623ea9fac
parent9e8b3258a06de01c53e60243ffe3419b47d016dd (diff)
downloaddwm-21553f9b4dc80a3afa0a76854dd2ae5ea5e1f4a1.tar.gz
changed back to urxvt, dwm has no problems with it, because it doesn't use frame windows ;)
-rw-r--r--client.c2
-rw-r--r--dev.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/client.c b/client.c
index 932b23e..f92ac26 100644
--- a/client.c
+++ b/client.c
@@ -13,7 +13,7 @@
 
 static void floating(void);
 static void tiling(void);
-static void (*arrange)(void) = tiling;
+static void (*arrange)(void) = floating;
 
 void
 max(void *aux)
diff --git a/dev.c b/dev.c
index d5726db..221715e 100644
--- a/dev.c
+++ b/dev.c
@@ -13,7 +13,7 @@
 /********** CUSTOMIZE **********/
 
 const char *term[] = { 
-	"aterm", "-tr", "+sb", "-bg", "black", "-fg", "white", "-fn",
+	"urxvtc", "-tr", "+sb", "-bg", "black", "-fg", "white", "-fn",
 	"-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*",NULL
 };
 const char *browse[] = { "firefox", NULL };
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 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255