diff options
| author | BossCode45 <boss@tehbox.org> | 2025-05-11 18:17:27 +1200 |
|---|---|---|
| committer | BossCode45 <boss@tehbox.org> | 2025-06-08 23:29:33 +1200 |
| commit | 6698e92f6d7574a31a6d0e17acf63edf9f689102 (patch) | |
| tree | 96dec36f65651889a5f6ee80bb917b5bfc0f2bc3 /src/IPC.h | |
| parent | 7dd44834f0af18cca87786a2050ae69928b7a397 (diff) | |
| download | YATwm-main.tar.gz YATwm-main.zip | |
Fixed keybinding errors
Hopefully fixed multiple monitor status bar workspaces
Refactored EWMH module
Diffstat (limited to 'src/IPC.h')
| -rw-r--r-- | src/IPC.h | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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; |
