diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2024-07-15 00:35:15 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2024-08-13 23:36:43 -0700 |
commit | 9b05c41168842035ddcd377ed5e23bb862fb4a60 (patch) | |
tree | 60c480f891ed2a256c7c91083e7385f6e8666a86 /src/vwm.h | |
parent | 94a7020ad8c9efd9c5818eb3422ff4cb66a1b278 (diff) |
charts: first stab at factoring out Xlib from charts/vmon
Diffstat (limited to 'src/vwm.h')
-rw-r--r-- | src/vwm.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -8,6 +8,7 @@ #include "list.h" #include "charts.h" #include "util.h" +#include "vcr.h" #include "xserver.h" #define WINDOW_BORDER_WIDTH 1 @@ -43,6 +44,7 @@ typedef enum _vwm_context_color_t { typedef struct _vwm_t { vwm_xserver_t *xserver; /* global xserver instance */ + vcr_backend_t *vcr_backend; /* global vcr backend for charts */ vwm_charts_t *charts; /* golbal charts instance */ /* extra X stuff needed by vwm */ |