summaryrefslogtreecommitdiff
path: root/src/IPC.h
diff options
context:
space:
mode:
authorBossCode45 <boss@tehbox.org>2025-05-11 18:17:27 +1200
committerBossCode45 <boss@tehbox.org>2025-06-08 23:29:33 +1200
commit6698e92f6d7574a31a6d0e17acf63edf9f689102 (patch)
tree96dec36f65651889a5f6ee80bb917b5bfc0f2bc3 /src/IPC.h
parent7dd44834f0af18cca87786a2050ae69928b7a397 (diff)
downloadYATwm-main.tar.gz
YATwm-main.zip
feat: A few minor bug fixesv0.0.2main
Fixed keybinding errors Hopefully fixed multiple monitor status bar workspaces Refactored EWMH module
Diffstat (limited to 'src/IPC.h')
-rw-r--r--src/IPC.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/IPC.h b/src/IPC.h
index e0bbcee..09d176a 100644
--- a/src/IPC.h
+++ b/src/IPC.h
@@ -5,20 +5,22 @@
#include "commands.h"
#include "config.h"
+#include "ewmh.h"
#include "util.h"
class IPCServerModule
{
public:
- IPCServerModule(CommandsModule& commandsModule, Config& cfg, Globals& globals);
+ IPCServerModule(Globals& globals, Config& cfg, CommandsModule& commandsModule, EWMHModule& ewmh);
void init();
void doListen();
void quitIPC();
int getFD();
private:
- CommandsModule& commandsModule;
- Config& cfg;
Globals& globals;
+ Config& cfg;
+ CommandsModule& commandsModule;
+ EWMHModule& ewmh;
int sockfd;
int len;
bool first = true;