This commit is contained in:
speedie 2022-12-04 19:25:36 +01:00
parent a3a1872f30
commit 832895b044
2 changed files with 4 additions and 4 deletions

View file

@ -5,7 +5,7 @@
*/
/* IPC */
#define USEIPC 0 /* Whether or not to include IPC.
#define USEIPC 1 /* Whether or not to include IPC.
NOTE: If you set this to 1, set USEIPC to true in toggle.mk and comment the YAJLLIBS and YAJLINC lines in config.mk.
Not compatible with BSDs so for those, set this to 0. */

View file

@ -149,10 +149,10 @@ dump_monitor(yajl_gen gen, Monitor *mon, int is_selected)
)
YSTR("bar"); YMAP(
YSTR("y"); YINT(mon->by);
YSTR("y"); YINT(mon->bar->by);
YSTR("is_shown"); YBOOL(mon->showbar);
YSTR("is_top"); YBOOL(mon->barposition);
YSTR("window_id"); YINT(mon->barwin);
YSTR("is_top"); YBOOL(mon->bar->barposition);
YSTR("window_id"); YINT(mon->bar->win);
)
)
// clang-format on