From 3f044a9672a27f9e745bb15a49846191a120e2e9 Mon Sep 17 00:00:00 2001 From: speediegq Date: Thu, 20 Oct 2022 15:44:46 +0200 Subject: [PATCH] move ipc --- speedwm.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/speedwm.c b/speedwm.c index 837564a..f831618 100644 --- a/speedwm.c +++ b/speedwm.c @@ -782,17 +782,17 @@ static int systraypinningfailfirst = 1; #include "text.h" /* Include tags and layouts */ -/* Rest of the IPC support */ -#if USEIPC -#include "toggle/ipc-yajl.c" -#endif - /* Layout code */ #include "layouts.c" /* Enable patched layouts */ /* Signals */ #include "signal.h" /* Include signal support */ +/* Rest of the IPC support */ +#if USEIPC +#include "toggle/ipc-yajl.c" +#endif + static char *fontarray[] = { font1, font2, font3, fonts }; /* All fonts */ unsigned int tagw[LENGTH(tags)];