about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@gmail.com>2007-09-15 10:35:18 +0200
committerAnselm R. Garbe <garbeam@gmail.com>2007-09-15 10:35:18 +0200
commit5d831eaa94e1ef91e4227298bdd5eec7b2181caf (patch)
tree36528ab18aab2e1da5519413d0f18430b13330a6
parente0a6dee30df84e1f4d63a428a9804bf47d82ca43 (diff)
downloaddwm-5d831eaa94e1ef91e4227298bdd5eec7b2181caf.tar.gz
renamed config.default.h into config.h
-rw-r--r--Makefile6
-rw-r--r--config.h (renamed from config.default.h)2
2 files changed, 2 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 34745a9..385b56e 100644
--- a/Makefile
+++ b/Makefile
@@ -20,10 +20,6 @@ options:
 
 ${OBJ}: dwm.h config.h config.mk
 
-config.h:
-	@echo creating $@ from config.default.h
-	@cp config.default.h $@
-
 dwm: ${OBJ}
 	@echo CC -o $@
 	@${CC} -o $@ ${OBJ} ${LDFLAGS}
@@ -35,7 +31,7 @@ clean:
 dist: clean
 	@echo creating dist tarball
 	@mkdir -p dwm-${VERSION}
-	@cp -R LICENSE Makefile README config.default.h config.mk \
+	@cp -R LICENSE Makefile README config.h config.mk \
 		dwm.1 dwm.h tile.h ${SRC} dwm-${VERSION}
 	@tar -cf dwm-${VERSION}.tar dwm-${VERSION}
 	@gzip dwm-${VERSION}.tar
diff --git a/config.default.h b/config.h
index b016174..cf24e67 100644
--- a/config.default.h
+++ b/config.h
@@ -8,7 +8,7 @@
 #ifdef DARK
 #define NORMBORDERCOLOR		"#222"
 #define NORMBGCOLOR		"#000"
-#define NORMFGCOLOR		"#eee"
+#define NORMFGCOLOR		"#ddd"
 #define SELBORDERCOLOR		"#09f"
 #else
 #define NORMBORDERCOLOR		"#666"