swaybar sends workspace name in quotes

fixes #894
This commit is contained in:
D.B 2016-09-12 06:49:27 +02:00
parent 7c166e350b
commit c239f228c2
1 changed files with 2 additions and 2 deletions

View File

@ -7,10 +7,10 @@
#include "log.h"
void ipc_send_workspace_command(const char *workspace_name) {
uint32_t size = strlen("workspace ") + strlen(workspace_name) + 1;
uint32_t size = strlen("workspace \"\"") + strlen(workspace_name) + 1;
char command[size];
sprintf(command, "workspace %s", workspace_name);
sprintf(command, "workspace \"%s\"", workspace_name);
ipc_single_command(swaybar.ipc_socketfd, IPC_COMMAND, command, &size);
}