Re-render bar on IPC updates

This commit is contained in:
Drew DeVault 2018-03-29 10:38:17 -04:00
parent 3a458cd7b5
commit 86ba0fc15d
3 changed files with 53 additions and 4 deletions

View file

@ -143,11 +143,17 @@ static void display_in(int fd, short mask, void *_bar) {
static void ipc_in(int fd, short mask, void *_bar) {
struct swaybar *bar = (struct swaybar *)_bar;
handle_ipc_event(bar);
if (handle_ipc_event(bar)) {
struct swaybar_output *output;
wl_list_for_each(output, &bar->outputs, link) {
render_frame(bar, output);
}
}
}
void bar_run(struct swaybar *bar) {
add_event(wl_display_get_fd(bar->display), POLLIN, display_in, bar);
add_event(bar->ipc_event_socketfd, POLLIN, ipc_in, bar);
while (1) {
event_loop_poll();
}