aboutsummaryrefslogtreecommitdiff
path: root/src/dwm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dwm.h')
-rw-r--r--src/dwm.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/dwm.h b/src/dwm.h
deleted file mode 100644
index 2ce055c..0000000
--- a/src/dwm.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef COMET_DWM_H
-#define COMET_DWM_H
-
-#include <glib.h>
-#include <gio/gio.h>
-
-#include "state.h"
-
-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);
-
-void dwm_register_tags(DwmIpc *dwm, Color color, Color selected, Color text_color);
-
-void dwm_destroy(DwmIpc *dwm);
-
-#endif
-
-// vim: ts=4 sw=4 et