diff options
Diffstat (limited to 'src/dwm.h')
| -rw-r--r-- | src/dwm.h | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -1,9 +1,23 @@ #ifndef COMET_DWM_H #define COMET_DWM_H +#include <glib.h> +#include <gio/gio.h> + #include "state.h" -typedef struct DwmIpc DwmIpc; +typedef struct { + GSocket *socket; + GSource *source; + State *state; + Color color; + Color text_color; + Color selected; + Button *tags[9]; + Button *title; + bool change_title; + bool hidden_title; +} DwmIpc; DwmIpc *dwm_create(State *state, const char *socket); |
