From 6698e92f6d7574a31a6d0e17acf63edf9f689102 Mon Sep 17 00:00:00 2001 From: BossCode45 Date: Sun, 11 May 2025 18:17:27 +1200 Subject: feat: A few minor bug fixes Fixed keybinding errors Hopefully fixed multiple monitor status bar workspaces Refactored EWMH module --- src/IPC.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/IPC.h') 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; -- cgit v1.2.3