sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit c239f228c23a0a75c5b414e797c0339c30c338b1
parent 7c166e350bf5081f5e5895f588be531d4281634d
Author: D.B <thejan.2009@gmail.com>
Date:   Mon, 12 Sep 2016 06:49:27 +0200

swaybar sends workspace name in quotes

fixes #894

Diffstat:
Mswaybar/ipc.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/swaybar/ipc.c b/swaybar/ipc.c @@ -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); }