mirror of
https://github.com/swaywm/sway.git
synced 2024-11-22 16:01:27 +00:00
Merge pull request #896 from thejan2009/bugfix/swaybar-whitespace-in-ws-name
Put workspace name in quotes (swaybar ipc)
This commit is contained in:
commit
953d6880c7
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue