This commit is contained in:
speedie 2023-05-22 00:05:09 +02:00
parent 7af63e4a13
commit c1a7afe1f4

View file

@ -17,16 +17,9 @@ typedef XColor Clr;
typedef struct Fnt {
Display *dpy;
unsigned int h;
FcPattern *pattern;
PangoLayout *layout;
} Fnt;
typedef struct Rgb {
unsigned int r;
unsigned int g;
unsigned int b;
} Rgb;
enum { ColFg, ColBg, ColPwl }; /* Clr scheme index */
typedef struct {
@ -41,7 +34,6 @@ typedef struct {
GC gc;
Clr *scheme;
Fnt *font;
Rgb *rgb;
cairo_surface_t *surface;
cairo_t *d;
} Drw;