From 60fa626116ac3865ec9034cfa7b33ecad03884a8 Mon Sep 17 00:00:00 2001 From: nyorain Date: Sat, 1 Jul 2017 18:35:42 +0200 Subject: [PATCH] Add the 'clipboard' command to set the clipboard --- include/sway/commands.h | 1 + sway/commands.c | 1 + sway/commands/clipboard.c | 38 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 sway/commands/clipboard.c diff --git a/include/sway/commands.h b/include/sway/commands.h index f67df10fc..660da2c22 100644 --- a/include/sway/commands.h +++ b/include/sway/commands.h @@ -103,6 +103,7 @@ sway_cmd cmd_client_unfocused; sway_cmd cmd_client_urgent; sway_cmd cmd_client_placeholder; sway_cmd cmd_client_background; +sway_cmd cmd_clipboard; sway_cmd cmd_commands; sway_cmd cmd_debuglog; sway_cmd cmd_default_border; diff --git a/sway/commands.c b/sway/commands.c index f83b52878..14be656a4 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -165,6 +165,7 @@ static struct cmd_handler handlers[] = { { "client.placeholder", cmd_client_placeholder }, { "client.unfocused", cmd_client_unfocused }, { "client.urgent", cmd_client_urgent }, + { "clipboard", cmd_clipboard }, { "commands", cmd_commands }, { "debuglog", cmd_debuglog }, { "default_border", cmd_default_border }, diff --git a/sway/commands/clipboard.c b/sway/commands/clipboard.c new file mode 100644 index 000000000..95514e787 --- /dev/null +++ b/sway/commands/clipboard.c @@ -0,0 +1,38 @@ +#include +#include +#include +#include "sway/commands.h" +#include "stringop.h" + +static void send_clipboard(void *data, const char *type, int fd) { + if (strcmp(type, "text/plain") != 0 + && strcmp(type, "text/plain;charset=utf-8") != 0) { + close(fd); + return; + } + + const char *str = data; + write(fd, str, strlen(str)); + close(fd); +} + +struct cmd_results *cmd_clipboard(int argc, char **argv) { + static char *current_data = NULL; + + struct cmd_results *error = NULL; + if ((error = checkarg(argc, "clipboard", EXPECTED_AT_LEAST, 1))) { + return error; + } + + static const char *types[2] = { + "text/plain", + "text/plain;charset=utf-8" + }; + + char *str = join_args(argv, argc); + wlc_set_selection(str, types, 2, &send_clipboard); + + free(current_data); + current_data = str; + return cmd_results_new(CMD_SUCCESS, NULL, NULL); +}