swaybar: save id upon startup

This adds an id property to the bar, which will be used to filter
barconfig_update events
This commit is contained in:
Ian Fan 2018-09-30 15:09:09 +01:00
parent 1f90f92f45
commit d0b54e932b
5 changed files with 13 additions and 13 deletions

View file

@ -345,10 +345,10 @@ void ipc_execute_binding(struct swaybar *bar, struct swaybar_binding *bind) {
IPC_COMMAND, bind->command, &len));
}
bool ipc_initialize(struct swaybar *bar, const char *bar_id) {
uint32_t len = strlen(bar_id);
bool ipc_initialize(struct swaybar *bar) {
uint32_t len = strlen(bar->id);
char *res = ipc_single_command(bar->ipc_socketfd,
IPC_GET_BAR_CONFIG, bar_id, &len);
IPC_GET_BAR_CONFIG, bar->id, &len);
if (!ipc_parse_config(bar->config, res)) {
free(res);
return false;