Add some more comments

This commit is contained in:
speediegq 2022-08-26 18:51:41 +02:00
parent 812b7cad56
commit cba6ed9ded

View file

@ -1,3 +1,12 @@
/* This is the header for the IPC feature.
* If you're not going to be using IPC, you can leave this as default, it will compile just fine.
*
* If you are going to use IPC you must follow the points below:
*
* - If you use an operating system that isn't GNU/Linux, edit config.mk and comment out the three lines, then edit toggle.h and set USEIPC to 0.
* - Install the 'yajl' package using your distro's package manager. It will depend on your distribution but on Gentoo the package is named 'yajl'.
* - Set USEIPC to 1 in toggle.h.
static const char *ipcsockpath = "/tmp/speedwm.sock";
static IPCCommand ipccommands[] = {
IPCCOMMAND( view, 1, {ARG_TYPE_UINT} ),