aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD.B <thejan.2009@gmail.com>2016-09-12 06:49:27 +0200
committerD.B <thejan.2009@gmail.com>2016-09-12 06:58:53 +0200
commitc239f228c23a0a75c5b414e797c0339c30c338b1 (patch)
tree79262e214a59d4ac1e64767006d69b17cfc05ceb
parent7c166e350bf5081f5e5895f588be531d4281634d (diff)
downloadsway-c239f228c23a0a75c5b414e797c0339c30c338b1.zip
sway-c239f228c23a0a75c5b414e797c0339c30c338b1.tar.gz
sway-c239f228c23a0a75c5b414e797c0339c30c338b1.tar.bz2
swaybar sends workspace name in quotes
fixes #894
-rw-r--r--swaybar/ipc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/swaybar/ipc.c b/swaybar/ipc.c
index 8d62d22..bce9dc7 100644
--- 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);
}