aboutsummaryrefslogtreecommitdiff
path: root/draw.c
diff options
context:
space:
mode:
Diffstat (limited to 'draw.c')
-rw-r--r--draw.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/draw.c b/draw.c
index 10a011d..dafc107 100644
--- a/draw.c
+++ b/draw.c
@@ -76,11 +76,12 @@ drawtext(const char *text, unsigned long col[ColLast]) {
}
unsigned long
-getcolor(const char *colstr) {
+getcolor(const char *colstr, const char *alternate) {
Colormap cmap = DefaultColormap(dpy, screen);
XColor color;
- XAllocNamedColor(dpy, cmap, colstr, &color, &color);
+ if(XAllocNamedColor(dpy, cmap, colstr, &color, &color) != Success)
+ XAllocNamedColor(dpy, cmap, alternate, &color, &color);
return color.pixel;
}