aboutsummaryrefslogtreecommitdiff
path: root/src/dwm.h
diff options
context:
space:
mode:
authorFederico Angelilli <code@fedang.net>2024-07-08 15:22:41 +0200
committerFederico Angelilli <code@fedang.net>2024-07-08 15:22:41 +0200
commit5d170a634ead0119f6e5a9f63c23b2b064126f75 (patch)
tree0447d2dbb0da6358d184a4c62d5557d4d22f5e8d /src/dwm.h
parent92feb3c130966202c7caa6d9bf3a3800c97ca7a1 (diff)
Remove old files
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