Skip to content

Set Clipboard

banner

With this action, you can set the clipboard content. This is useful if you want want to paste some predefined text somewhere else.

This action has the following options.

  • Text: The text to set in the clipboard.

If you edit your menus.json file by hand or use the IPC interface, you can create this action with something like the following.

menus.json
...
"selectWorkflow": {
"actions": [
...
{
"type": "set-clipboard",
"text": "Hello World!"
}
...
]
}
...