aboutsummaryrefslogtreecommitdiff
path: root/src/dwm.h
blob: be016e6062c983312cd3e9da6967174d396311e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef COMET_DWM_H
#define COMET_DWM_H

#include "state.h"

typedef struct DwmIpc DwmIpc;

DwmIpc *dwm_create(State *state, const char *socket);

void dwm_register_tags(DwmIpc *dwm, Color color, Color selected, Color text_color, Color line_color);

void dwm_destroy(DwmIpc *dwm);

#endif

// vim: ts=4 sw=4 et