From 8a232c8cfd60c1469ceaaa911f31a6d75e8ad851 Mon Sep 17 00:00:00 2001 From: David Eklov Date: Mon, 11 Jul 2016 00:50:23 -0500 Subject: Send command to sway to change workspace when workspace button is clicked --- swaybar/ipc.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'swaybar') diff --git a/swaybar/ipc.c b/swaybar/ipc.c index 6697742e..15f40508 100644 --- a/swaybar/ipc.c +++ b/swaybar/ipc.c @@ -8,7 +8,12 @@ #include "bar/ipc.h" void ipc_send_workspace_command(const char *workspace_name) { - sway_log(L_DEBUG, "Clicked on window %s", workspace_name); + uint32_t size = strlen("workspace ") + strlen(workspace_name) + 1; + + char command[size]; + sprintf(command, "workspace %s", workspace_name); + + ipc_single_command(swaybar.ipc_socketfd, IPC_COMMAND, command, &size); } static void ipc_parse_config(struct config *config, const char *payload) { -- cgit v1.2.3-54-g00ecf