Fixed laggy focused output boolean
This commit is contained in:
parent
da6e48520b
commit
b72825441b
|
@ -216,9 +216,11 @@ static void free_workspaces(struct wl_list *list) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void ipc_get_workspaces(struct swaybar *bar) {
|
void ipc_get_workspaces(struct swaybar *bar) {
|
||||||
|
bar->focused_output = NULL;
|
||||||
struct swaybar_output *output;
|
struct swaybar_output *output;
|
||||||
wl_list_for_each(output, &bar->outputs, link) {
|
wl_list_for_each(output, &bar->outputs, link) {
|
||||||
free_workspaces(&output->workspaces);
|
free_workspaces(&output->workspaces);
|
||||||
|
output->focused = false;
|
||||||
}
|
}
|
||||||
uint32_t len = 0;
|
uint32_t len = 0;
|
||||||
char *res = ipc_single_command(bar->ipc_socketfd,
|
char *res = ipc_single_command(bar->ipc_socketfd,
|
||||||
|
@ -251,10 +253,6 @@ void ipc_get_workspaces(struct swaybar *bar) {
|
||||||
ws->visible = json_object_get_boolean(visible);
|
ws->visible = json_object_get_boolean(visible);
|
||||||
ws->focused = json_object_get_boolean(focused);
|
ws->focused = json_object_get_boolean(focused);
|
||||||
if (ws->focused) {
|
if (ws->focused) {
|
||||||
if (bar->focused_output) {
|
|
||||||
bar->focused_output->focused = false;
|
|
||||||
}
|
|
||||||
bar->focused_output = output;
|
|
||||||
output->focused = true;
|
output->focused = true;
|
||||||
}
|
}
|
||||||
ws->urgent = json_object_get_boolean(urgent);
|
ws->urgent = json_object_get_boolean(urgent);
|
||||||
|
@ -262,6 +260,7 @@ void ipc_get_workspaces(struct swaybar *bar) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
json_object_put(results);
|
||||||
free(res);
|
free(res);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue