This commit is contained in:
Drew DeVault 2018-04-03 11:17:34 -04:00
parent 447dcd3cb3
commit f366ef373e
2 changed files with 9 additions and 2 deletions

View file

@ -59,7 +59,11 @@ bool status_handle_readable(struct status_line *status) {
wlr_log(L_DEBUG, "Enabled click events.");
status->i3bar_state.click_events = true;
const char *events_array = "[\n";
write(status->write_fd, events_array, strlen(events_array));
ssize_t len = strlen(events_array);
if (write(status->write_fd, events_array, len) != len) {
status_error(status,
"[failed to write to status command]");
}
}
json_object_put(proto);
}