mirror of
https://github.com/swaywm/sway.git
synced 2026-04-21 06:46:22 -04:00
swaybar: always subscribe to mode and workspace
always subscribe to mode and workspace events, since we might need them after bar config updates even if we don't need them initially.
This commit is contained in:
parent
db7638a0e5
commit
7cc903dac1
1 changed files with 3 additions and 6 deletions
|
|
@ -426,12 +426,9 @@ bool ipc_initialize(struct swaybar *bar) {
|
|||
}
|
||||
free(res);
|
||||
|
||||
struct swaybar_config *config = bar->config;
|
||||
char subscribe[128]; // suitably large buffer
|
||||
len = snprintf(subscribe, 128,
|
||||
"[ \"barconfig_update\" , \"bar_state_update\" %s %s ]",
|
||||
config->binding_mode_indicator ? ", \"mode\"" : "",
|
||||
config->workspace_buttons ? ", \"workspace\"" : "");
|
||||
char *subscribe =
|
||||
"[ \"barconfig_update\", \"bar_state_update\", \"mode\", \"workspace\" ]";
|
||||
len = strlen(subscribe);
|
||||
free(ipc_single_command(bar->ipc_event_socketfd,
|
||||
IPC_SUBSCRIBE, subscribe, &len));
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue