commit 8a232c8cfd60c1469ceaaa911f31a6d75e8ad851
parent a0c8799c8008da4eccde3ae4bd5865b5c4422058
Author: David Eklov <david.eklov@gmail.com>
Date: Mon, 11 Jul 2016 00:50:23 -0500
Send command to sway to change workspace when workspace button is clicked
Diffstat:
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git 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) {