My dmenu build
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
370 B

  1. /* See LICENSE file for copyright and license details. */
  2. #include <X11/Xlib.h>
  3. #include "draw.h"
  4. unsigned long
  5. getcolor(DC *dc, const char *colstr) {
  6. Colormap cmap = DefaultColormap(dc->dpy, DefaultScreen(dc->dpy));
  7. XColor color;
  8. if(!XAllocNamedColor(dc->dpy, cmap, colstr, &color, &color))
  9. eprint("cannot allocate color '%s'\n", colstr);
  10. return color.pixel;
  11. }