about summary refs log tree commit diff stats
path: root/dwm.h
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-08-25 07:54:49 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-08-25 07:54:49 +0200
commit9833610356f7ce033589680fddf87000e5788774 (patch)
treea3919d3c1ae6e75d3774ce4cf0be0d430521d31f /dwm.h
parentde7fc0011eccb546db1278fad41b684b3abaca18 (diff)
downloaddwm-9833610356f7ce033589680fddf87000e5788774.tar.gz
back to 3 colors
Diffstat (limited to 'dwm.h')
-rw-r--r--dwm.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/dwm.h b/dwm.h
index 7db0f54..9d2d959 100644
--- a/dwm.h
+++ b/dwm.h
@@ -36,8 +36,9 @@ typedef struct {
 
 typedef struct { /* draw context */
 	int x, y, w, h;
-	unsigned long bg[2];
-	unsigned long fg[2];
+	unsigned long bg;
+	unsigned long fg;
+	unsigned long border;
 	Drawable drawable;
 	Fnt font;
 	GC gc;